/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package nilaiMinMax1for;
/**
*
* @author ANGGA
*/
public class nilaiMinMax1for {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic
int min,max;
int[][]array={{1,2,3},{4,5},{6,7,8}};
min = array[0][0];
max = array[0][0];
for(int a=0;a<array.length;a++){
for(int b=0;b<array[a].length;b++){
if(array[a][b]<min){
min=array [a][b];
}
if(array[a][b]>max){
max=array[a][b];
}
}
}
System.out.println(“Nilai Min : “+min);
System.out.println(“Nilain Max : “+max);
}
}