#include class CPoint{ public: int x; int y; void show() { cout<< "("<< x << "," << y << ")" << "\n";} bool setxy(int ix, int iy); };