JAVA经典算法(三十一)
作者:互联网
题目:将一个数组逆序输出。
package cn.ls.lanqiao;
import java.util.*;
public class Test31 {
public static void main(String[] args) {
int[] a = new int[] { 7, 6, 5, 4, 3, 2, -1 };
int temp;
for (int i = 0; i < a.length / 2; i++) {
temp = a[i];
a[i] = a[a.length - 1 - i];
a[a.length - 1 - i] = temp;
}
System.out.println(Arrays.toString(a));
}
}
ls~wifi 发布了148 篇原创文章 · 获赞 160 · 访问量 9371 私信 关注
标签:JAVA,temp,int,算法,三十一,length,ls,文章,public 来源: https://blog.csdn.net/ls_wifi/article/details/104079839