public class Test2 {
public static void main(String[] args) {
String[] name = {"weimeng", "zhao", "qian", "sun", "li", "zhou", "wu", "zheng", "wang", "zhang"};
double[] score = {100, 70, 81, 90, 60, 50, 78, 45, 58, 80};
Student[] stu = new Student[10];
for (int i = 0; i < stu.length; i++) {
stu[i] = new Student(name[i], score[i]);
}
Class c = new Class(stu);
System.out.println("Average score:" + c.getAverage());
System.out.println("The highest score:" + c.getMax());
System.out.println("Minimum score:" + c.getMin());
System.out.println("Score distribution:" + c.gradeDistribution());
}
}