在Java中,可以使用循環來遍歷數組中的所有元素,并輸出它們。以下是一個簡單的示例:
public class Main {
public static void main(String[] args) {
int[] arr = {1, 2, 3, 4, 5};
// 使用for循環輸出數組中的所有元素
for (int i = 0; i < arr.length; i++) {
System.out.println(arr[i]);
}
}
}
在這個示例中,我們定義了一個包含5個整數的數組arr
,然后使用for循環遍歷數組中的所有元素,并使用System.out.println()
方法將它們輸出到控制臺。運行以上代碼將輸出:
1
2
3
4
5