编写应用程序,程序定义Fruit、Apple和Exercise三个类。

日期:2017-11-30 13:55:51 人气:3

编写应用程序,程序定义Fruit、Apple和Exercise三个类。

#include #include using namespace std;class fruit{public:string color;//颜色float height;//重量};class apple:public fruit{public://不知道你的苹果还有啥属性自己添加吧string shape;//形状apple(float a,string b,string c){height = a;color = b;shape =
    A+
热门评论