# 전체 학생 수 ## 문제 뼈대코드에 클래스변수를 활용하여 총 생성된 Student 객체의 수를 출력 하시오. ## 힌트 구글링: 자바 클래스 변수 ## 출력 예 ``` 전체 학생 수: 3 ``` ## 뼈대코드 ``` public class Main { public static void main(String[] args) { Student a = new Student("Tom"); Student b = new Student("John"); Student c = new Student("Kate"); } } class Student { /* 클래스 변수를 활용하여 총 학생수를 출력하도록 하시오 */ int count = 0; String name; Student(String name) { this.name = name; } } ```
관련 강의로 이동

코드: java 1.8

public class Main { public static void main(String[] args) { } }

입력

정답이 궁금하다면? 코드를 제출해보세요!