강의 예제 중 클래스가 왜 필요한지에 대한 내용이다. package class1;public class ClassStart1 { public static void main(String[] args) { String student1Name = "학생1"; String student2Name = "학생2"; int student1Age = 15; int student2Age = 16; int student1Score = 90; int student2Score = 80; System.out.println("이름: " + student1Name + "나이: " + student1Age + "점수: " + student1..