定義一個抽象類shape,包括名字,編號,性別,派生三個類,圓,矩形,三角形

#include<iostream> #include<math.h> using namespace std; class shape { public: virtual double Area()=0; virtual double Setshaape()=0; }; class Tri:public shape{ private: double a1
相關文章
相關標籤/搜索