윤성우 열혈 c++ 문제 04-2번 and 생성자 추가 버전 4-3 문제 문제 04-2번 #define _CRT_SECURE_NO_WARNINGS #include #include using namespace std; class Point { private: int xpos; int ypos; public: void Init(int x, int y) { xpos = x; ypos = y; } void ShowPointInfo() const { cout 프로그래밍 언어/c++ 2022.01.25