5955: 二维数组求最大数

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:19 Solved:11

Description

有一个4x3的矩阵要求编程序求出其中只最大的那个数的值以及其所在的行号和列号。

Input

37 63 92 
77 12 1
98 17 9 

23 32 65

Output

max=98

maxRow=2

maxClos=0

Sample Input Copy

37 63 92 
77 12 1
98 17 9 
23 32 65

Sample Output Copy

max=98
maxRow=2
maxClos=0