Dream追逐 2016-04-28 04:30 采纳率: 100%
浏览 1281
已采纳

C++程序,公有继承之后成员的值变成了随机值,怎么回事儿

#include
#include
using namespace std;

const float Pi = 3.1415;

class C {
public:
C(float r, float h) :Radius(r), high(h) {}
protected:
float Radius;
float high;
};

class Round :public C {
public:
void supArea();
void volume();
};

void Round::supArea() {
float s;
s = 4 * Pi*pow(C::Radius, 2);
cout << "\n球的表面积为:" << s << endl;
}

void Round::volume() {
float v;
v = 4 * Pi*pow(C::Radius, 3) / 3;
cout << "\n球的体积为:" << v << endl;
}

class Cylinder :public C {
public:
void supArea();
void volume();
};

void Cylinder::supArea() {
float s;
s = 2 * Pi*pow(C::Radius, 2) + C::high * 2 * Pi*C::Radius;
cout << "\n圆柱的表面积为:" << s << endl;
}

void Cylinder::volume() {
float v;
v = Pi*pow(C::Radius, 2)*C::high;
cout << "\n圆柱的体积为:" << v << endl;
}

class Cone :public C {
public:
void supArea();
void volume();
};

void Cone::supArea() {
float s;
s = Pi*pow(C::Radius, 2) + Pi*C::Radius*C::high;
cout << "\n圆锥的表面积为:" << s << endl;
}

void Cone::volume() {
float v;
v = 1 / 3 * Pi*pow(C::Radius, 2)*sqrt(pow(C::high, 2) - pow(C::Radius, 2));
cout << "\n圆锥的体积为:" << v << endl;
}

int main() {
C q(1, 2);
Round r;
r.supArea();
r.volume();
Cylinder c1;
c1.supArea();
c1.volume();
Cone c2;
c2.supArea();
c2.volume();
return 0;
}

  • 写回答

2条回答

  • sueastward 2016-04-28 06:04
    关注

    #include
    using namespace std;
    const float Pi = 3.1415;
    class C {
    public:
    C(float r, float h) :Radius(r), high(h) {}
    protected:
    float Radius;
    float high;
    };
    class Round :public C {
    public:
    Round(float r,float h):C(r,h){}
    void supArea();
    void volume();
    };
    void Round::supArea() {
    float s;

    s = 4 * Pi*pow(C::Radius, 2);
    cout << "\n球的表面积为:" << s << endl;
    

    }
    void Round::volume() {
    float v;
    v = 4 * Pi*pow(C::Radius, 3) / 3;
    cout << "\n球的体积为:" << v << endl;
    }
    class Cylinder :public C {
    public:
    Cylinder(float r,float h):C(r,h){}
    void supArea();
    void volume();
    };
    void Cylinder::supArea() {
    float s;
    s = 2 * Pi*pow(C::Radius, 2) + C::high * 2 * Pi*C::Radius;
    cout << "\n圆柱的表面积为:" << s << endl;
    }
    void Cylinder::volume() {
    float v;
    v = Pi*pow(C::Radius, 2)*C::high;
    cout << "\n圆柱的体积为:" << v << endl;
    }
    class Cone :public C {
    public:
    Cone(float r,float h):C(r,h){}
    void supArea();
    void volume();
    };
    void Cone::supArea() {
    float s;
    s = Pi*pow(C::Radius, 2) + Pi*C::Radius*C::high;
    cout << "\n圆锥的表面积为:" << s << endl;
    }
    void Cone::volume() {
    float v;
    v = 1 / 3 * Pi*pow(C::Radius, 2)*sqrt(pow(C::high, 2) - pow(C::Radius, 2));
    cout << "\n圆锥的体积为:" << v << endl;
    }
    int main() {

    Round r(1,2);
    r.supArea();
    r.volume();
    Cylinder c1(1,2);
    c1.supArea();
    c1.volume();
    Cone c2(1,2);
    c2.supArea();
    c2.volume();
    
    return 0;
    

    }

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何在3D高斯飞溅的渲染的场景中获得一个可控的旋转物体
  • ¥88 实在没有想法,需要个思路
  • ¥15 MATLAB报错输入参数太多
  • ¥15 python中合并修改日期相同的CSV文件并按照修改日期的名字命名文件
  • ¥15 有赏,i卡绘世画不出
  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题
  • ¥15 COCOS的问题COCOS的问题
  • ¥15 FPGA-SRIO初始化失败