c++:建立一个类cylinder,cylinder的构造函数被传递了两个double值,分别表示圆柱体的半径和高度,
题目
c++:建立一个类cylinder,cylinder的构造函数被传递了两个double值,分别表示圆柱体的半径和高度,
用类cylinder 计算圆柱体的体积,并存储在一个double变量中,并在cylinder中包含一个成员函数vol(),来显示每个对象的体积.
1,建立一个静态成员 static int total_vol;累加体积
2,建立一个cylinder 的友元函数用来获取它的私有数据
3,main函数中建立三个类,cylinder的对象,并用静态成员完成累加,友元显示数据.
下面三点是附加要求,得一并写在程序中,麻烦你们了.
答案
#include
using namespace std;
#define PI 3.14159
class Cylinder{
public:
Cylinder(double radius,double height):radius(radius),height(height),volume(PI*radius*radius*height){
total_vol += volume;
}
double vol()const;
friend void getParas(double& radius,double&height,double&vol,double& total_vol,const Cylinder& obj);
private:
double radius; //radius
double height; //height
double volume;//volume of current object
static double total_vol;//total volume
};
double Cylinder::total_vol = 0;
double Cylinder::vol()const{
return this->volume;
}
void getParas(double& radius,double& height,double& vol,double& total_vol,const Cylinder& obj){ //get private member of Cylinder
radius = obj.radius;
height = obj.height;
vol = obj.volume;
total_vol = obj.total_vol;
}
int main(){
double rd = 0,hg = 0,vol = 0,total_vol = 0;
Cylinder cld_1(2,3.5),cld_2(5.2,7),cld_3(3.9,4.0);//3 objects
getParas(rd,hg,vol,total_vol,cld_3);
cout
举一反三
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
最新试题
热门考点
- 某有机物A由C、H、O三种元素组成,在一定条件下,A、B、C、D、E之间的转化关系如下: 已知C的蒸气密度是相同条件下氢气的22倍,并可以发生银镜反应. (1)物质D中所含官能团的名称是_
- 水果店有西瓜515千克,哈密瓜的千克数是西瓜的五分之二,又是木瓜的三分之二
- 现在有两节电池,两个小开关,两个灯泡和足够用的导线,请你设计一个电路,让两个开关分别控制两个
- in ,of是不是中间都加名词变成介词结构啊?
- Tom,let[we us]go to school
- 差字有哪些读音
- SO2+H2S===2H2O+3S中二氧化硫被还原还是氧化?怎么看
- 通过看来自星星的你感受到了什么
- +将一条线段分成相等线段的点,叫做线段的交点,
- 英语八年级上册15页3c作文怎么写,急写到,快