用基于对象的程序编写方式编写程序求3个长方体的体积。长方体类型的数据成员包括 length , width , height 。成员函数包括: (1) set ():由键盘输入长方体的长、宽、高;(2) int volume ():计算长方体的体积; (3) void showVolume ():输出长方体的体积。
时间: 2023-11-22 12:54:27 浏览: 74
计算长方体的体积代码
下面是使用基于对象的程序编写方式编写的程序求3个长方体的体积:
```cpp
#include <iostream>
using namespace std;
class Cuboid {
private:
double length, width, height;
public:
void set() {
cout << "请输入长方体的长、宽、高:";
cin >> length >> width >> height;
}
int volume() {
return length * width * height;
}
void showVolume() {
cout << "长方体的体积为:" << volume() << endl;
}
};
int main() {
Cuboid c1, c2, c3;
c1.set();
c1.showVolume();
c2.set();
c2.showVolume();
c3.set();
c3.showVolume();
return 0;
}
```
运行程序时,会提示用户输入3个长方体的长、宽、高,并依次输出它们的体积。
阅读全文