package chapter202308101;
class MyStudent {
String name;
int grade;
int kor;
int eng;
int math;
void printStudent() {
System.out.println(name + "은 " + grade + "학년이고, 국어성적은 " + kor + " 점 입니다.");
}
}
public class test04 {
public static void main(String[] args) {
MyStudent student1 = new MyStudent();
student1.name = "김철수";
student1.grade = 2;
student1.kor = 100;
student1.eng = 90;
student1.math = 88;
MyStudent student2 = new MyStudent();
student2.name = "박영수";
student2.grade = 1;
student2.kor = 90;
student2.eng = 70;
student2.math = 98;
student1.printStudent();
student2.printStudent();
}
}