在Java中,可以使用for循環遍歷數組,并使用System.out.println()方法打印數組的值。
以下是一種常見的方法:
public class PrintArray {
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
另一種方法是使用增強的for循環(也稱為for-each循環):
public class PrintArray {
public static void main(String[] args) {
// 定義一個整型數組
int[] numbers = {1, 2, 3, 4, 5};
// 使用增強的for循環遍歷數組并打印每個元素的值
for (int number : numbers) {
System.out.println(number);
}
}
}
輸出結果與上述方法相同。