import java.util.*; public class msBank01 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); //获取第一行(学生数) String s = sc.nextLine(); //创建一个排序Set 传进一个排序规则匿名内部类 TreeSet<Student> studentTreeSet = new TreeSet&...