Compare commits
2 Commits
152063142d
...
c660c11ffd
Author | SHA1 | Date | |
---|---|---|---|
c660c11ffd | |||
c8fedc7d9e |
22
Source1.cpp
22
Source1.cpp
@ -237,27 +237,7 @@ 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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user