用C++编写 定义一个圆柱体类Cylinder,包括:私有数据成员,其中包括:(1) radius(底圆半径,整数类型)(2) height(高度,整数类型)公有成员函数,其中包括:(1) 构造函数:Cylinder(int r,int h)(2) 表面积计算函数double area()(3) 体积计算函数double volume()(4) 打印表面积和体积信息的函数void print().注:PI直接用3.14表示.
2020-02-08
用C++编写 定义一个圆柱体类Cylinder,包括:私有数据成员,其中包括:
(1) radius(底圆半径,整数类型)
(2) height(高度,整数类型)
公有成员函数,其中包括:
(1) 构造函数:Cylinder(int r,int h)
(2) 表面积计算函数double area()
(3) 体积计算函数double volume()
(4) 打印表面积和体积信息的函数void print().
注:PI直接用3.14表示.
优质解答
下面是我帮你编的.测试通过了#include#define PI 3.14using namespace std;class Cylinder{private :int radius;\x05 int height;\x05public:\x05Cylinder(int r,int h){\x05 radius=r;\x05\x05\x05height=h;\x05\x0...
下面是我帮你编的.测试通过了#include#define PI 3.14using namespace std;class Cylinder{private :int radius;\x05 int height;\x05public:\x05Cylinder(int r,int h){\x05 radius=r;\x05\x05\x05height=h;\x05\x0...