◈ Human Project

    [Student] Student 필드 정의, main 메서드 메뉴 정리

    1. class Student 생성 package student; public class Student { // 학번, 이름, 국어, 영어, 수학 String no; String name; int kor; int eng; int mat; // 총점, 평균 int sum () { return kor + eng + mat; } double avg () { return (int)(sum() / 3d * 100) / 100d; } } 2. class StudentEx 생성 package student; import java.util.Scanner; public class StudentEx { public static void main(String[] args) { StudentService service = n..