阅读量:0
在Java中,你可以使用嵌套的for循环来遍历并打印二维数组的每个元素。以下是一个示例:
public class Main { public static void main(String[] args) { // 创建一个 3x4 的二维数组 int[][] arr = { {1, 2, 3, 4}, {5, 6, 7, 8}, {9, 10, 11, 12} }; // 获取数组的行数和列数 int rows = arr.length; int cols = arr[0].length; // 使用嵌套的for循环遍历并打印二维数组的每个元素 for (int i = 0; i< rows; i++) { for (int j = 0; j< cols; j++) { System.out.print(arr[i][j] + " "); } System.out.println(); // 换行 } } }
运行上述代码,将输出以下结果:
1 2 3 4 5 6 7 8 9 10 11 12