Java经典编程题50道之三十一

将一个数组逆序输出。

public class Example31 {
    public static void main(String[] args) {
        int[] a = { 9, 4, 6, 8, 3, 21, 16, 12 };
        covertArray(a);
    }

    public static void covertArray(int[] a) {
        System.out.print("原数组为:");
        for (int r : a) {
            System.out.print(r + " ");
        }
        System.out.print("\n数组逆序为:");
        for (int i = a.length - 1; i >= 0; i--) {
            System.out.print(a[i] + " ");
        }
    }
}

posted @ 2017-06-07 10:39  本宫在,尔等都是妃  Views(215)  Comments(0Edit  收藏  举报