参考代码:
import java.util.Scanner; public class Main10 { static class M{ String name; int socre; } /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub //2256: [蓝桥杯][算法提高]成绩排名 Scanner scanner=new Scanner(System.in); int n=scanner.nextInt(); M [] student=new M[n]; for (int i = 0; i < student.length; i++) { student[i]=new M(); student[i].name=scanner.next(); student[i].socre=scanner.nextInt(); } for (int i = 0; i < student.length-1; i++) { for (int j = 0; j < student.length-1-i; j++) { if (student[j].socre<student[j+1].socre) { int max=student[j].socre; String mi=student[j].name; student[j].socre=student[j+1].socre; student[j].name=student[j+1].name; student[j+1].socre=max; student[j+1].name=mi; } } } for (M m : student) { System.out.println(m.name); } } }
0.0分
2 人评分
人民币问题 (C语言代码)浏览:720 |
字符串的输入输出处理 (C语言代码)浏览:2055 |
C语言训练-字符串正反连接 (C语言代码)浏览:726 |
母牛的故事 (C语言代码)浏览:1409 |
C语言程序设计教程(第三版)课后习题6.3 (Java代码)浏览:695 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:615 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:1555 |
WU-输入输出格式练习 (C++代码)浏览:1133 |
简单的a+b (C语言代码)浏览:626 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:750 |