1.完成了显示所有学生信息

//打印输出所有的学生信息
static void showStudent(ArrayList<Student> array) {
System.out.println("学号 姓名 年龄 性别 成绩");
for(int i=0;i<array.size();i++) {
Student s=array.get(i);
System.out.print(s.getStunumber()+"\t"+s.getName()+"\t"+s.getAge()+"\t");
boolean sex=s.isSex();
if(sex==false) {
System.out.print("男");
}
else {
System.out.print("女");
}
System.out.print("\t"+s.getScore()+"\n");
}
}

2.BUG修改完成

3.明天继续完成程序