/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package arrayBedaPanjang;
/**
*
* @author ANGGA
*/
public class arrayBedaPanjang {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
int[][] array=new int[5][10];
int nilai=1;
for(int i=0;i<array.length;i++){
for(int j=0;j<array[i].length;j++){
array[i][j]=nilai;
if(array[i][j]%2==0){
System.out.print(array[i][j]+" ");
}
nilai++;
}
System.out.println();
}
}
}