摘要: #include<iostream> using namespace std; class CPolygon{ protected: int width,height; public: void set_values(int a,int b) {width=a;height=b;} }; class 阅读全文
posted @ 2023-05-09 20:41 KuanDong24 阅读(13) 评论(0) 推荐(0) 编辑