求三个长方体的体积(C++)

2020-06-15 科技 142阅读
#include
using namespace std;
class Cuboid
{
public:
Cuboid()
{
Input();
}
Cuboid(float l,float w,float h)
{
length=l;
width=w;
height=h;
}
float GetVolume()
{
return length*width*height;
}
void Input()
{
cout<<"请输入长方体的长:";
cin>>length;
cout<<"请输入长方体的宽:";
cin>>width;
cout<<"请输入长方体的高:";
cin>>height;
}
protected:
float length;
float width;
float height;
};
main()
{
Cuboid a,b,c;
float va=a.GetVolume();
float vb=b.GetVolume();
float vc=c.GetVolume();
cout<<"第一个长方体的体积是:"< <<"第二个长方体的体积是:"< <<"第三个长方体的体积是:"<}
声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com