Java 学生类 平均成绩、最高成绩、最低成绩,成绩分布情况
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("平均分:" + c.getAverage());
System.out.println("最高分:" + c.getMax());
System.out.println("最低分:" + c.getMin());
System.out.println("成绩分布:" + c.gradeDistribution());
}
}