在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
這個示例展示了如何使用嵌套的for循環遍歷和打印一個3x4的二維數組。你可以根據需要修改數組的大小和內容。