要打印數組的內容,可以使用for循環遍歷數組,并使用System.out.println()方法打印數組元素。
下面是一個示例代碼:
public class Main {
public static void main(String[] args) {
int[] array = {1, 2, 3, 4, 5};
System.out.println("數組內容:");
for (int i = 0; i < array.length; i++) {
System.out.println(array[i]);
}
}
}
運行上述代碼,輸出結果為:
數組內容:
1
2
3
4
5
這里使用了for循環遍歷數組,從數組的第一個元素開始,依次打印每個元素。每次循環中,通過array[i]來訪問數組中的第i個元素,然后使用System.out.println()方法將其打印出來。