학생 클래스 (캡슐화 최종 실습) [디딤돌 C++]언제나 휴일 티스토리 ▷Student.h//Student.h#pragma once#include using namespace std;class Student{ const int pn;//주민번호 static int last_pn;//가장 최근에 부여한 주민 번호 string name;//이름 int iq;//지력 int hp;//체력 int stress;//스트레스 int scnt;//연속으로 공부한 횟수 //능력치의 디폴트, 최소, 최대값 static const int def_iq; static const int min_iq; static const int max_iq; static const int def_hp; static const int min_..