期中考试编程题答案 (1).docx 时间:2022-08-13 04:50:01 【文件属性】: 文件名称:期中考试编程题答案 (1).docx 文件大小:14KB 文件格式:DOCX 更新时间:2022-08-13 04:50:01 c++ 第1题 矩形类及期成员函数的实现 #include #include using namespace std ; class CPoint { int x; int y; public : CPoint (int ptX =0, int ptY =0): x (ptX ), y(ptY ) { } friend class CRectangle; }; 立即下载