package kr.ac.jj.java201562054; import java.util.Scanner; public class S007_Sungjuk { public static void main(String[] args) { // TODO Auto-generated method stub HighStudent hs = new HighStudent(); hs.Input(); hs.Print(); HighStudent hs2 = new HighStudent(100,99,100); hs2.Print(); } } class HighStudent{ String name = "No Name";//이름 int kor;//국어성적 int eng;//영어성적 int mat;//수학성적 int tot;//합계 double..