Problem H: 计算数组中元素的最大值及其所在的行列下标值
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:4208
Solved:3319
Description
按如下函数原型编程从键盘输入一个m行n列的二维数组,然后计算数组中元素的最大值及其所在的行列下标值。其中m和n的值由用户键盘输入。已知m和n的值都不超过10。
void InputArray(int *p,int m,int n);
int FindMax(int *p,imt m,int n,int *pRow,int *pCol);
程序运行示例:
Input m, n:2,3↙
Input 2*3 array:
1 2 3↙
4 5 6↙
max=6, row=2, col=3
Input
输入数组大小:"%d,%d"
输入数组元素:"%d"
Output
输出格式:
数组大小输入提示信息:"Input m, n:"
数组元素输入提示信息:"Input %d*%d array:\n"
输出格式:"max=%d, row=%d, col=%d\n"
Sample Input Copy
5,5
1 2 3 4 5
4 5 6 100 2
3 2 1 5 6
1 2 3 5 4
3 5 6 4 8
Sample Output Copy
Input m, n:Input 5*5 array:
max=100, row=2, col=4