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; +// } +// +// } +// } +//}