可以使用一個for循環來實現數組的逆序輸出。具體代碼如下所示:
public class ReverseArray {
public static void main(String[] args) {
int[] arr = {1, 2, 3, 4, 5};
// 輸出原始數組
System.out.println("原始數組:");
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
// 逆序輸出數組
System.out.println("\n逆序輸出數組:");
for (int i = arr.length - 1; i >= 0; i--) {
System.out.print(arr[i] + " ");
}
}
}
運行以上代碼,將會輸出以下結果:
原始數組:
1 2 3 4 5
逆序輸出數組:
5 4 3 2 1