/*
编写一个程序的模拟班级学生的成绩库, 包含多项成绩,英语,数学,Java.
实现如下功能:
1.可以修改某个学生的某项分数.
2.可以打印全班同学成绩
要求使用集合来完成.*/
public class Test1 {
public static void main(String[] args) {
ArrayList<Student> a = new ArrayList<Student>();
Student c1= new Student("张三",70,70,70);
Student c2= new Student("李四",80,80,80);
Student c3= new Student("王五",90,90,90);