用C++写:定义一个Box(盒子)类,在该类定义中包括以下数据成员和成员函数。数据成员:length(长),wide(宽)和height(高)。成员函数:构造函数Box,设置盒子的长宽和高三个初始数据;成员函数setBox对数据成员置值;成员函数volume计算盒子的体积。
时间: 2024-05-14 10:15:16 浏览: 128
定义一个Box(盒子)类,在该类定义中包括以下数据成员和成员函数
```c++
#include <iostream>
using namespace std;
class Box {
private:
double length;
double wide;
double height;
public:
Box(double l, double w, double h) {
length = l;
wide = w;
height = h;
}
void setBox(double l, double w, double h) {
length = l;
wide = w;
height = h;
}
double volume() {
return length * wide * height;
}
};
int main() {
Box box(2, 3, 4);
cout << "The volume of the box is " << box.volume() << endl;
box.setBox(3, 4, 5);
cout << "The volume of the box is " << box.volume() << endl;
return 0;
}
```
阅读全文