#include #include #include using namespace std; // 회원가입할 때에 필수 정보들 (Model) class User { private: string id; string pw; string name; int age; public: // 기본 생성자 User() { ; } // 초기 생성자 User(string id, string pw, string name, int age) : id(id), pw(pw), name(name), age(age) { ; } // getter (반환) string getId() { return id; } string getPw() { return pw; } // setter (수정) void setPw(string pw) { this->pw..