import java.util.Scanner; class student{ String name; int score; } public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n=sc.nextInt(); student[]stu=new student[n]; for (int i = 0; i < stu.length; i++) { stu[i]=new student(); stu[i].name=sc.next(); stu[i].score=sc.nextInt(); } //冒泡排序 for (int i = 0; i < stu.length-1; i++) { for (int j = 0; j < stu.length-1; j++) { if(//分数低的排前面 (stu[j].score<stu[j+1].score)|| //分数相等,按照姓名字母排序 。。字母小的排前面 (stu[j].score==stu[j+1].score)&&(stu[j].name.compareTo(stu[j+1].name)>0)) { student t=stu[j]; stu[j]=stu[j+1]; stu[j+1]=t; } } } for (int i = 0; i < stu.length; i++) { System.out.println(stu[i].name+" "+stu[i].score); } } }
0.0分
1 人评分
A+B for Input-Output Practice (IV) (C语言代码)浏览:484 |
C语言程序设计教程(第三版)课后习题11.8 (C语言代码)浏览:910 |
WU-C语言程序设计教程(第三版)课后习题12.1 (C++代码)浏览:1024 |
钟神赛车 (C语言代码)浏览:665 |
C语言程序设计教程(第三版)课后习题9.6 (C语言代码)浏览:611 |
1199题解浏览:707 |
三进制小数 (C语言代码)浏览:903 |
发工资咯 (C语言代码)浏览:815 |
ACM俱乐部密码浏览:948 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:524 |