열혈c++ Chapter 04 문제04-3 #define _CRT_SECURE_NO_WARNINGS #include using namespace std; class Point { private: int xpos, ypos; public: Point (int x, int y):xpos(x),ypos(y) {} void ShowPointInfo()const { cout Programming/C++ 2021.08.15