摘要: #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-04-21 22:21 KuanDong24 阅读(11) 评论(0) 推荐(0) 编辑