在Java中,可以使用嵌套循環來輸出二維數組的內容。以下是一個簡單的示例:
public class Main {
public static void main(String[] args) {
int[][] arr = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
for (int i = 0; i < arr.length; i++) {
for (int j = 0; j < arr[i].length; j++) {
System.out.print(arr[i][j] + " ");
}
System.out.println();
}
}
}
在上面的示例中,我們首先定義了一個二維數組arr
,然后使用嵌套循環來遍歷二維數組的每個元素,并使用System.out.print
方法輸出每個元素的值。在內層循環結束后,使用System.out.println
方法換行輸出下一行的元素。通過這種方式,可以逐行輸出二維數組的內容。