将一个数组逆序输出。
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] + " ");
}
}
}
Atas ialah kandungan terperinci Java经典编程题--将一个数组逆序输出. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!