캡슐화 실습 소스 코드 Stu.cpp #include "Stu.h" int Stu::last_num; Stu::Stu(string _name):num(SetStuNum()) { name = _name; hp = StuProperty::def_hp; iq = StuProperty::def_iq; stress = StuProperty::def_stress; scnt = StuProperty::def_scnt; } void Stu::Dance() { SetIq(GetIq()+3); SetHp(GetHp()-30); SetStress(GetStress()-20); SetSCnt(0); } void Stu::Drink() { SetIq(GetIq()-4); SetHp(GetHp()-20); SetStress(Ge..