대략적인 클래스 #include #include #include // 네임스페이스 using namespace std; // 글자 색상, 배경 색상 변경 void tbColor(unsigned short textColor = 7, unsigned short backColor = 0) { int color = textColor + backColor * 16; SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), color); } // ======================================================================================= // // 클래스 생성 class Person { // 접근제어자는 3..