要打印數組中的所有元素,可以使用for循環遍歷數組,并使用System.out.println()方法打印每個元素。以下是示例代碼:
public class PrintArrayElements {
public static void main(String[] args) {
int[] numbers = {1, 2, 3, 4, 5};
// 使用for循環遍歷數組
for (int i = 0; i < numbers.length; i++) {
// 打印每個元素
System.out.println(numbers[i]);
}
}
}
輸出結果為:
1
2
3
4
5