从键盘上录入学生人数和每个学生的分数,按分数降序输出所有的分数
import java.util.Arrays;
import java.util.Scanner;/*
* 从键盘上录入学生人数和每个学生的分数,按分数降序输出所有的分数
* java冒泡排序
* */
public class Test12 {public static void main(String[] args) {Scanner sc = new Scanner(System.in);System.out.println("输入学生人数:");int num = sc.nextInt();//该数组用于存储学生分数int[] score = new int[num];//从键盘上接收多个学生分数for (int i = 1;i<=num;i++){System.out.println("请录入第"+i+"个学生的分数:");score[i-1] = sc.nextInt();}//冒泡排序for (int i = 0;i<num-1;i++){for (int j = 0;j<num-1-i;j++){if (score[j]>score[j+1]){int temp = score[j];score[j] = score[j+1];score[j+1] = temp;}}}System.out.println(Arrays.toString(score));sc.close();}
}
执行代码如下: