在Java中,可以使用for循環來遍歷數組,并使用System.out.println()方法來打印數組的元素。下面是一個示例代碼:
public class ArrayPrintingExample {
public static void main(String[] args) {
int[] numbers = {1, 2, 3, 4, 5};
for (int i = 0; i < numbers.length; i++) {
System.out.println(numbers[i]);
}
}
}
這段代碼創建了一個整數數組numbers
,然后使用for循環遍歷數組的每個元素,并使用System.out.println()
方法打印每個元素的值。運行該代碼,將會打印出數組的每個元素:
1
2
3
4
5