student pakageStudent.java더보기package student;public abstract class Student { protected int studentNo; protected String name; protected String cellphone; public Student(int studentNo, String name, String cellphone) { this.studentNo = studentNo; this.name = name; this.cellphone = cellphone; } public int getStudentNo() { return this.studentNo; } p..