update:demo2

This commit is contained in:
dichgrem
2025-10-31 17:01:12 +08:00
parent af1ea3e24e
commit d765c1a219
8 changed files with 214 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package com.study.demo2;
public class Main {
public static void main(String[] args) {
int[] scores = {85, 90, 78, 92, 88, 76, 95, 89, 79, 94};
Student student = new Student("5001", "张三", scores);
System.out.println("平均分: " + student.getAverage());
System.out.println("最高分: " + student.getMaxScore());
System.out.println("等级: " + student.getGrade());
}
}