-->
当前位置:首页 > 题库

PROGRAMMING:Find the maximum number and column number in the two-dimensional array

Luz5年前 (2021-05-10)题库458
Finding an arbitrary M × The maximum number of M-matrix and the number of its rows and columns
###Input format:
Enter m (2 < = m < = 20) and matrix elements (only int type is considered) from the keyboard.
###Output format:
The maximum number in the output array and the row and column of the maximum number
###Input example:
```in
three
8 6 2
5 7 1
4 9 5
```
###Output example:
```out
max=9,i=2,j=1
```







answer:If there is no answer, please comment