定义一个Box(盒子)类,在该类定义中包括数据成员: length(长),width(宽)和height(

定义一个Box(盒子)类,在该类定义中包括数据成员:length(长)、width(宽)和height(高);成员函数:构造函数Box,设置盒子长、宽和高三个初始数据;用... 定义一个Box(盒子)类,在该类定义中包括数据成员: length(长)、width(宽)和height(高);成员函数: 构造函数Box,设置盒子长、宽和高三个初始数据;用函数volume 计算并输出盒子的体积。在main函数中,要求创建Box对象,并求盒子的体积。
int main()
{
Box b1,b2(2,3,4);
float v1,v2;
v1 = b1.GetVolume();
v2 = b2.GetVolume();
if (v1>v2)
cout<<v1<<" "<<v2<<endl;
else
cout<<v2<<" "<<v1<<endl;
return 0;
}
展开
 我来答
porker2008
2014-05-28 · TA获得超过1.4万个赞
知道大有可为答主
回答量:7066
采纳率:62%
帮助的人:1.1亿
展开全部
#include <iostream>
using namespace std;

class Box {
float length, width, height;
public:
Box(float l, float w, float h);
float GetVolume() const;
};

Box::Box(float l = 1, float w = 1, float h = 1) 
: length(l), width(w), height(h) {}

float Box::GetVolume() const {
return height * width * length;
}

int main()
{
Box b1, b2(2, 3, 4);
float v1, v2;
v1 = b1.GetVolume();
v2 = b2.GetVolume();
if (v1>v2)
cout << v1 << " " << v2 << endl;
else
cout << v2 << " " << v1 << endl;
return 0;
}
追问
Box b1, b2(2, 3, 4);
这行有错哎~error C2512: 'Box' : no appropriate default constructor available
怎么改呢???
追答
#include <iostream>
using namespace std;

class Box {
float length, width, height;
public:
Box();
Box(float l, float w, float h);
float GetVolume() const;
};

Box::Box() : length(1), width(1), height(1) {}

Box::Box(float l, float w, float h)
: length(l), width(w), height(h) {}

float Box::GetVolume() const {
return height * width * length;
}

int main()
{
Box b1, b2(2, 3, 4);
float v1, v2;
v1 = b1.GetVolume();
v2 = b2.GetVolume();
if (v1>v2)
cout << v1 << " " << v2 << endl;
else
cout << v2 << " " << v1 << endl;
return 0;
}
光点科技
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件... 点击进入详情页
本回答由光点科技提供
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式