共计 354 个字符,预计需要花费 1 分钟才能阅读完成。
Java 中打印二维数组可以使用嵌套循环遍历数组的每个元素,然后使用 System.out.print 或 System.out.println 方法进行打印。
以下是一个示例代码:
public class Main {public static void main(String[] args) {int[][] array = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
for (int i = 0; i < array.length; i++) {for (int j = 0; j < array[i].length; j++) {System.out.print(array[i][j] + " ");
}
System.out.println();}
}
}
以上代码会输出:
1 2 3
4 5 6
7 8 9
每个元素之间使用空格分隔,每行打印完后换行。
丸趣 TV 网 – 提供最优质的资源集合!
正文完