학생 클래스 (캡슐화 실습) [디딤돌 C++]언제나 휴일 티스토리 ▷Student.h//Student.h#pragma once#include #include using namespace std; enum SIndex //과목 열거형{ KOREAN, ENGLISH, MATH, MAX_SUBJECT}; class Student//학생 클래스{ static int last_num;//정적 멤버 필드 const int num;//상수화 멤버 필드 string name; int scores[MAX_SUBJECT]; static const string titles[MAX_SUBJECT];//과목명 - 정적 멤버 필드public: static int GetStuCount();//정적 메서드 Student(string..