내 풀이 public class Student { String name = "홍길동"; //이름 int ban = 1; //반 int no =1; //번호 int kor = 100; // 국어점수 int eng= 60; //영어 점수 int math = 76; //수학 점수 int gettotal = kor+eng+math; // 총점 double getAverage = gettotal / 3; //평균 void who() { System.out.println("이름:"+name); } void total() { System.out.println("총점:"+gettotal); } void Average() { System.out.println("평균:"+getAverage); } }Stude..