1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <iostream>
int main(){
setlocale(0, "rus");
const int m = 3, n = 4;
int i, j, k, max, A[m][n];
for (i = 0; i < m; i++)
for (j = 0; j < n; j++)
std::cin >> A[i][j];
{
max = 0;
for (j = 1; j < n; j++)
if (A[i][j]>A[i][max])
max = j;
for (k = 0; k < m; k++)
if (A[k][max]>=A[i][max])
break;
std::cout << i+1 << ";" << max+1 << "\n";
return 0;
}
std::cout << "0\n";
Ну на хз правильно или нет так как из 8 класса,но все равно
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <iostream>
int main(){
setlocale(0, "rus");
const int m = 3, n = 4;
int i, j, k, max, A[m][n];
for (i = 0; i < m; i++)
for (j = 0; j < n; j++)
std::cin >> A[i][j];
for (i = 0; i < m; i++)
{
max = 0;
for (j = 1; j < n; j++)
if (A[i][j]>A[i][max])
max = j;
for (k = 0; k < m; k++)
{
if (A[k][max]>=A[i][max])
break;
std::cout << i+1 << ";" << max+1 << "\n";
return 0;
}
}
std::cout << "0\n";
return 0;
}
Ну на хз правильно или нет так как из 8 класса,но все равно