class Array2{
public static void main(String[] args) {
char[][] tabChar = {
{'a', 'b', 'c', 'd', 'e'}, {'f', 'g', 'h', 'i', 'j'}, {'k', 'l', 'm', 'n', 'o'}, {'p', 'q', 'r', 's', 't'}, {'u', 'v', 'w', 'x', 'y'}
};
System.out.println("isi array :");
int i;
int j;
for(i=0; i<5; i++){
// perulangan baris
for(j=0; j<5; j++){
// perulangan kolom
System.out.print (tabChar[i][j] + " ");
}
System.out.println();
}
}
}