Выведем номер первого столбца матрицы a[n][m], не содержащего отрицательных элементов, или -1, если такого столбца не существует.
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, m;
cin >> n >> m;
int a[n][m];
for (int i = 0; i < n; ++i)
for (int j = 0; j < m; ++j)
cin >> a[i][j];
for (int j = 0; j < m; ++j) {
bool b = 1;
for (int i = 0; i < n && b; ++i)
b = (a[i][j] >= 0);
if (b) {
cout << (j+1) << endl;
return 0;
}
cout << -1 << endl;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Выведем номер первого столбца матрицы a[n][m], не содержащего отрицательных элементов, или -1, если такого столбца не существует.
Код
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, m;
cin >> n >> m;
int a[n][m];
for (int i = 0; i < n; ++i)
for (int j = 0; j < m; ++j)
cin >> a[i][j];
for (int j = 0; j < m; ++j) {
bool b = 1;
for (int i = 0; i < n && b; ++i)
b = (a[i][j] >= 0);
if (b) {
cout << (j+1) << endl;
return 0;
}
}
cout << -1 << endl;
return 0;
}