...1)私有数据成员(lengh、width、height);(2)...

发布网友 发布时间:2024-10-23 23:27

我来回答

1个回答

热心网友 时间:2024-11-02 06:07

#include <iostream>

using namespace std;

class Box {
private :
int length;
int width;
int heigth;
public :
Box(int len = 0,int w = 0,int h = 0);
void print();
int volume();
~Box() {}
};

Box::Box(int len,int w,int h) {
length = len;
width = w;
heigth = h;
}

void Box::print() {
cout << length << "," << width << "," << heigth << endl;
}

int Box::volume() {
return length * width * heigth;
}

int main() {
Box A(2,3,5);
A.print();
cout << A.volume() << endl;
return 0;
}

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com