创建一个长方体类,数据成员至少包括长、宽、高,分别命名为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无用
悬赏问题
- ¥15 乌班图ip地址配置及远程SSH
- ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
- ¥15 PSPICE制作一个加法器
- ¥15 javaweb项目无法正常跳转
- ¥15 VMBox虚拟机无法访问
- ¥15 skd显示找不到头文件
- ¥15 机器视觉中图片中长度与真实长度的关系
- ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
- ¥15 java 的protected权限 ,问题在注释里
- ¥15 这个是哪里有问题啊?