/*
* 从二维不规则数组中查找最大值
* 并指明最大值所在的行号和列号
*/
public class FindMax{
public static void main(String[] args){
int [][]m={{0,1,2,3},{400,5},{8,9,10}};//
int max=m[0][0];
int row=0;
int column=0;
for(int i=0;i<m.length;i++)
for(int j=0;j<m.length;j++){
if(m[j]>max){
max=m[j];
row=i;
column=j;
}
}
System.out.println("max="+max+" locate at row="+row+" column="+column);
}
}
//
|