第1题矩形类及期成员函数的实现#include#includeusingnamespacestd;classCPoint{intx;inty;public:CPoint(intptX=0,intptY=0):x(ptX),y(ptY){}friendclassCRectangle;};