設計一個長方形的類,成員的變量有長與寬,成員函數要求周長與面積,然後進行測試。

設計一個長方形的類,成員的變量有長與寬,成員函數要求周長與面積,然後進行測試。 #include using namespace std; class cfx { private: float lenth,width; public: cfx(float a,float b){lenth=a;width=b;} float len(){return 2*(lenth+width);} float
相關文章
相關標籤/搜索