#include <iostream>
#include <iomanip>
using namespace std;
int main() {
int max, index;
max = 0;
index = -1;
int arr[3][5] = { { 3, 0, 3, 0, 5} , { 5, 3, 0, 2, 0} , { 4, 0, 3, 2, 1} };
for (int i = 0; i < 3; ++i){ // вывод исх. матрицы, можешь удалить, если надо.
for (int j = 0; j < 5; ++j){
cout << setw(3) << arr[i][j];
}
cout << endl;
} // до этой строки вывод исх. матрицы
int tmp = 0;
for (int j = 0; j < 5; j++){ // подсчет нулей
for (int i = 0; i < 3; i++){
if (arr[i][j] == 0){
tmp++;
if (tmp > max){ // тут получаем номер столбца, в котором
max = tmp; // больше всего нулей
index = j;
tmp = 0;
cout << endl << "" << endl;
if (index != -1){
arr[i][index] = -2;
for (int i = 0; i < 3; ++i){ // вывод измененной матрицы
return 0;
#include <iostream>
#include <iomanip>
using namespace std;
int main() {
int max, index;
max = 0;
index = -1;
int arr[3][5] = { { 3, 0, 3, 0, 5} , { 5, 3, 0, 2, 0} , { 4, 0, 3, 2, 1} };
for (int i = 0; i < 3; ++i){ // вывод исх. матрицы, можешь удалить, если надо.
for (int j = 0; j < 5; ++j){
cout << setw(3) << arr[i][j];
}
cout << endl;
} // до этой строки вывод исх. матрицы
int tmp = 0;
for (int j = 0; j < 5; j++){ // подсчет нулей
for (int i = 0; i < 3; i++){
if (arr[i][j] == 0){
tmp++;
}
}
if (tmp > max){ // тут получаем номер столбца, в котором
max = tmp; // больше всего нулей
index = j;
}
tmp = 0;
}
cout << endl << "" << endl;
if (index != -1){
for (int i = 0; i < 3; i++){
arr[i][index] = -2;
}
}
for (int i = 0; i < 3; ++i){ // вывод измененной матрицы
for (int j = 0; j < 5; ++j){
cout << setw(3) << arr[i][j];
}
cout << endl;
}
return 0;
}