import java.util.*;
public class Main {
public static void main(String[] args) {
List<Student> list=new ArrayList<Student>();
list.add(new Student(10,"wangli",89,78,88));
list.add(new Student(28,"Katefd",89,68,88));
list.add(new Student(35,"Caoyue",69,78,86));
list.add(new Student(36,"caoyue",69,78,86));
list.add(new Student(32,"Caoyue",69,78,81));
list.add(new Student(36,"zhansa",69,78,86));
list.add(new Student(88,"zhansa",69,78,86));
list.add(new Student(47,"wanhua",98,88,88));
list.add(new Student(52,"wanhai",69,88,89));
list.add(new Student(63,"liwuab",89,78,88));
Collections.sort(list);
for(Student stu:list)
{
System.out.println(stu);
}
}
}
/* 请在这里填写答案 */
class Student implements Comparable<Student> {
int id;
String name;
int math;
int english;
int cs;
//补充代码段1
Student(int id,String name,int math,int english,int cs){
this.name=name;
this.id=id;
this.math=math;
this.english=english;
this.cs=cs;
}
@Override
public String toString() {
return "Student{" +
"id=" + id +
", name='" + name + '\'' +
", math=" + math +
", english=" + english +
", cs=" + cs +
'}';
}
@Override
public int compareTo(Student o) {
return 0;
}
//补充代码段2
}