等着马上来,先定个座
#include
using namespace std;
const float pi=(float)3.141593;
class cylinder
{
public:
cylinder(){}
cylinder(float rds,float hgt):radius(rds),height(hgt){};
void surface();
void volume();
void Print();
private:
float radius,height,sf,vl;
};
void cylinder::surface()
{
sf=2*pi*radius*height;
}
void cylinder::volume()
{
vl=pi*radius*radius*height;
}
void cylinder::Print()
{
cout<<"表面积为:"<
int main()
{
cylinder a(1,2),b(2,3),c(3,1);
a.surface();
a.volume();
b.surface();
b.volume();
c.surface();
c.volume();
cout<<"a的";
a.Print();
cout<<"b的";
b.Print();
cout<<"c的";
c.Print();
return 0;
}
/*编写一个基于对象的程序,求3个圆柱体的表面积和体积。圆柱体对象的数据成员包括radius(底面半径)、height(高)。要求用成员函数实现以下功能:
(1) 定义构造函数完成圆柱体的初始化;
(2) 计算圆柱体的表面积;
(3) 计算圆柱体的体积;
(4) 输出圆柱体的表面积、体积.
*/