From c8fedc7d9ea37a18701b5d022f5cffde9988ff06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=B0=D1=80=D0=B2=D0=B0=D1=80=D0=B0=20=D0=9A=D0=B0?= =?UTF-8?q?=D1=80=D0=B0=D1=81=D0=B5=D0=B2=D0=B0?= Date: Wed, 6 Nov 2024 09:43:23 +0400 Subject: [PATCH] 2 commit --- Source1.cpp | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/Source1.cpp b/Source1.cpp index 3cefa12..b57e812 100644 --- a/Source1.cpp +++ b/Source1.cpp @@ -237,27 +237,27 @@ void load() { fclose(fin); } -void deleteRow(int delRow) { - printf("!!!! deleteRow(%d) !!!!\n", delRow); - for (int i = delRow; i < n - 1; i++) { - for (int j = 0; j < m; j++) { - arr[i][j] = arr[i + 1][j]; - } - } - n--; -} - -void ChetNet() { - printf("!!!! ChetNet() !!!!\n"); - for (int i = 0; i < n; i++) { - for (int j = 0; j < m; j++) { - if (arr[i][j] % 2 == 1) { - arr[i][j] = 0; - } - - } - } -} +//void deleteRow(int delRow) { +// printf("!!!! deleteRow(%d) !!!!\n", delRow); +// for (int i = delRow; i < n - 1; i++) { +// for (int j = 0; j < m; j++) { +// arr[i][j] = arr[i + 1][j]; +// } +// } +// n--; +//} +// +//void ChetNet() { +// printf("!!!! ChetNet() !!!!\n"); +// for (int i = 0; i < n; i++) { +// for (int j = 0; j < m; j++) { +// if (arr[i][j] % 2 == 1) { +// arr[i][j] = 0; +// } +// +// } +// } +//}