posted 19 years ago
int [][] list = { {1, 2, 3, 4},
{5, 6, 7, 8},
{9, 10, 11, 12}
};
for(int row = 0; row < list.length; row++) {
for(int column = 0; column < list[row].length; column++) {
System.out.print(list[row][column] + " ");
}
System.out.println();
}