解题思路: 利用集合的sort进行排序(重写比较器)
注意事项: 第一排序条件为成绩 其次姓名 最后年龄
参考代码:
import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.Comparator; import java.util.List; import java.util.Scanner; /** * Main */ public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while (sc.hasNext()) { int n = sc.nextInt(); List<Student> students = new ArrayList<>(); for (int i = 0; i < n; i++) { String name = sc.next(); int age = sc.nextInt(); int score = sc.nextInt(); students.add(new Student(name, age, score)); } // 对list进行排序:调用list的sort并定义比较规则 students.sort((s1, s2) -> { if (s1.score != s2.score) { // 成绩不一样 return Integer.compare(s1.score, s2.score); } else if (!s1.name.equals(s2.name)) { // 成绩不一样,姓名不一样 return s1.name.compareTo(s2.name); } else { // 成绩、姓名都一样 return Integer.compare(s1.age, s2.age); } }); // 遍历输出 for (Student s : students) { System.out.println(s.name + " " + s.age + " " + s.score); } } sc.close(); } } class Student{ String name; int age; int score; public Student(String name, int age, int score){ this.name = name; this.age = age; this.score = score; } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)浏览:549 |
C语言程序设计教程(第三版)课后习题6.11 (C语言代码)for循环浏览:1178 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:702 |
C语言程序设计教程(第三版)课后习题6.8 (C语言代码)浏览:798 |
【绝对值排序】 (C语言代码)浏览:892 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:582 |
整数平均值 (C语言代码)浏览:856 |
C语言训练-自守数问题 (C语言代码)浏览:798 |
【偶数求和】 (C++代码)浏览:744 |
统计立方数 (C语言代码)浏览:890 |