创建一个长方体类,数据成员至少包括长、宽、高,分别命名为length width height.要求用成员函数完成如下功能:
(1)从键盘上输入长、宽、高。
(2)计算长方体的体积与表面积。
(3)输出长方体的体积与表面积。
例:
1.1 2.2 3.3
area=26.62,volume=7.986
请注意;main()函数必须按如下所示编写:
int main()
{
Cuboid cc; float a,b,c;
cin>>a>b>c;
cc. set value(a,b,c);
cc. count area();
cc. count volume();
cc. show();
return 0;
}
c++创建长方体类,计算体积与表面积
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
1条回答 默认 最新
- ...404 Not Found 2022-06-03 18:19关注
#include<iostream> using namespace std; class Cuboid { public: void setvalue(float a, float b, float c) { this->length = a; this->width = b; this->height = c; } void countarea() { this->area = 2 * (this->height*this->length + this->height*this->width + this->length*this->width); } void countvolume() { this->volume = this->height*this->length*this->width; } void show() { cout << "area=" << this->area << "," << "volume=" << this->volume; } private: float length; float width; float height; float area; float volume; }; int main() { Cuboid cc; float a, b, c; cin >> a >> b >> c; cc.setvalue(a, b, c); cc.countarea(); cc.countvolume(); cc.show(); return 0; }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 3无用
悬赏问题
- ¥500 高有偿提问!求优化设计微信小程序
- ¥15 matlab在安装时报错 无法找到入口 无法定位程序输入点
- ¥15 收益高的广告联盟有哪些
- ¥15 Android Studio webview 的使用问题, 播放器横屏全屏
- ¥15 删掉jdk后重新下载,Java web所需要的eclipse无法使用
- ¥15 uniapp正式环境中通过webapi将本地数据推送到设备出现的跨域问题
- ¥15 xui建立节点,显示错误
- ¥15 关于#单片机#的问题:开始、复位、十进制的功能可以实现,但是切换八进制的功能无法实现(按下按键也没有效果),把初始状态调成八进制,也是八进制可以实现但是切换到十进制不行(相关搜索:汇编语言|计数器)
- ¥15 VINS-Mono或Fusion中feature_manager中estimated_depth是特征的深度还是逆深度?
- ¥15 谷歌浏览器如何备份抖音网页数据