为什么结果顺序不一样?
为什么用For循环结果顺序是乱的?
为什么用For循环结果顺序是乱的?
2019-06-25
我这个简单的,
import java.util.Arrays;
public class HelloWorld {
public static void main(String[] args) {
// 定义一个整型数组,保存成绩信息
int[] scores = { 89, 72, 64, 58, 93 };
// 对Arrays类对数组进行排序
//Arrays.sort(scores);
for(int j=1;j<scores.length;j++){
for(int i=1;i<scores.length;i++){
if(scores[i-1]>scores[i]){
int temp=scores[i-1];
scores[i-1]=scores[i];
scores[i]=temp;
}
}
}
// 使用foreach遍历输出数组中的元素
for(int score:scores)
System.out.println(score);
}
}
举报