给出一组二维数组,求其中最大值并标出它的位置。
求编程?
int f1,f2; int max=a[0][0]; for(int i=0;i<n;++i) for(int j=0;j<m;++j) if(a[i][j]>max){ max=a[i][j]; f1=i; f2=j; }
明白请采纳