2300: 数组练习-4
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Normal Judger
Creator:
Submit:6
Solved:3
Description
首先从键盘输入两个正整数m和n(分别代表二维数组的行数和列数),接着输入m*n个整数(代表数组元素)。然后查找并输出数组元素中的最大值及其所在的行号和列号(行号和列号从0开始计数),输出的数据之间用空格分隔。
Input
4 4 89 20 92 20 26 40 88 39 34 98 99 67 23 87 0 42
Output
99 2 2
Sample Input Copy
3 4 87 10 79 32 58 94 49 4 18 58 66 84
Sample Output Copy
94 1 1