在数组 scores中存放了6名学生的成绩,分数分别为75、49、82、63、95、79。1)、输出排序前的数组内容;2)、使用 arrays.sort()方法输出排序后的数组内容。
时间: 2024-01-26 13:00:20 浏览: 67
用数组输出学生成绩信息
在Java中,可以使用arrays.sort()方法对数组进行排序。假设数组名称为scores,其中存放了6名学生的成绩,分数分别为75、49、82、63、95、79。
1)、输出排序前的数组内容:
int[] scores = {75, 49, 82, 63, 95, 79};
System.out.println("排序前的数组内容为:");
for(int score : scores){
System.out.print(score + " ");
}
输出结果为:75 49 82 63 95 79
2)、使用 arrays.sort()方法输出排序后的数组内容:
import java.util.Arrays;
Arrays.sort(scores);
System.out.println("\n排序后的数组内容为:");
for(int score : scores){
System.out.print(score + " ");
}
输出结果为:49 63 75 79 82 95
这样就使用arrays.sort()方法对数组进行了升序排序,输出了排序后的数组内容。
阅读全文