2 commit
This commit is contained in:
parent
152063142d
commit
c8fedc7d9e
42
Source1.cpp
42
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;
|
||||
// }
|
||||
//
|
||||
// }
|
||||
// }
|
||||
//}
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user