摘要: #include<bits/stdc++.h>using namespace std;class Shape{ public: virtual double area()=0; ~Shape(){};};class Rectangle:public Shape{ private: double wi 阅读全文
posted @ 2023-04-15 21:57 mo寒流xing 阅读(43) 评论(0) 推荐(0)