(改自教材P262第6题)仿照你阅读过的程序,编写基于对象的程序,求3个长方柱的体积。数据成员包括长(length)、宽(width)、高(heigth)、体积,要求用成员函数实现下面的功能:
(1)由键盘输入3个长方柱的长、宽、高;
(2)计算长方柱的体积(volume)和表面积(areas);
(3)输出这3个长方柱的体积和表面积;
#include <iostream>
using namespace std;
class Bulk
{
public:
void get_value();
void display();
private:
float length;
float width;
float heigth;
};
void Bulk::get_value()
{
cout << "please input length、width、heigth" <<endl;
cin >> length;
cin >> width;
cin >> heigth;
}
void Bulk::display()
{
double areas , volume ;
areas = (length * width + width * heigth + length * heigth) * 2;
volume = length * width * heigth ;
cout << "表面积:" << areas << "体积:" << volume << endl;
}
int main()
{
Bulk b1, b2, b3;
b1.get_value();
cout << "first bulk:" << endl;
b1.display();
b2.get_value();
cout << "sencod bulk:" << endl;
b2.display();
b3.get_value();
cout << "third bulk:" << endl;
b3.display();
return 0;
}