标签:com scanner java array 字符串 can 相同 item err
每个测试输入包含 1 个测试用例,格式为
第 1 行:正整数 n
第 2 行:第 1 个学生的姓名 学号 成绩
第 3 行:第 2 个学生的姓名 学号 成绩
... ... ...
第 n+1 行:第 n 个学生的姓名 学号 成绩
其中姓名
和学号
均为不超过 10 个字符的字符串,成绩为 0 到 100 之间的一个整数,这里保证在一组测试用例中没有两个学生的成绩是相同的。
对每个测试用例输出 2 行,第 1 行是成绩最高学生的姓名和学号,第 2 行是成绩最低学生的姓名和学号,字符串间有 1 空格。
3
Joe Math990112 89
Mike CS991301 100
Mary EE990830 95
Mike CS991301
Joe Math990112
import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.Iterator; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n =sc.nextInt(); ArrayList<Student> stds = new ArrayList<Student>(); for (int i = 0; i < n; i++) { stds.add(new Student()); stds.get(i).name = sc.next(); stds.get(i).id = sc.next(); stds.get(i).score= sc.nextInt(); } Collections.sort(stds); System.out.println(stds.get(0).name+" "+stds.get(0).id); System.out.println(stds.get(stds.size()-1).name+" "+stds.get(stds.size()-1).id); } } class Student implements Comparable<Student> { String name; String id; int score; @Override public int compareTo(Student o) { return -(score - o.score); } }
标签:com scanner java array 字符串 can 相同 item err
原文地址:https://www.cnblogs.com/ow0843/p/9676665.html