实现代码
结果
public class y {
public static void main(String args[]) {
int[][] h = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } };
for (int i = 0; i < h.length; i++) {
for (int j = 0; j <= h[1].length - 1; j++) {
System.out.print(h[i][j]);
}
System.out.println("");
}
}
}