| 查看: 729 | 回复: 2 | ||
[求助]
运行以下程序,cuboid1的体积和cuboid2 的体积分别是多少? 已有1人参与
|
|
//Cuboid.h class Cuboid { public: void setCuboid(double l=2., double w=2., double h=2.); double getVolume(); private: double Length, double Width, double Heigth; }; //Cuboid.cpp #include "Cuboid.h" void Cuboid::setCuboid(double l, double w, double h){ Length = l; Width = w; Heigth = h; } double Cuboid::getVolume(){ return Length * Width * Heigth ; } #include <iostream> using namespace std; #include "Cuboid.h" void main(){ Cuboid cuboid1,cuboid2; cuboid1.setCuboid(); cuboid2.setCuboid (3, 4, 5); cout<<" cuboid1的体积=" << cuboid1.getVolume()<<endl<<endl; cout<<" cuboid2的体积=" << cuboid2.getVolume()<<endl<<endl; } |
» 猜你喜欢
医学类期刊求推荐
已经有5人回复
生活琐事由它去
已经有4人回复
提交了我也来说说感想
已经有12人回复
青B发送上会通知了吗
已经有9人回复
西安交大新媒学院副院长用撤稿论文结题
已经有6人回复
论文撤稿了
已经有8人回复
化学专业申博
已经有4人回复
某211大学教师把个人教师官方主页改成:我跑了我跑了我跑了!官宣跑路!
已经有5人回复
26/27申博自荐
已经有9人回复
博士申请
已经有3人回复

2楼2014-07-16 11:31:10
zeppe
金虫 (小有名气)
- 应助: 15 (小学生)
- 金币: 3901.3
- 散金: 58
- 红花: 4
- 帖子: 205
- 在线: 254.1小时
- 虫号: 573594
- 注册: 2008-06-14
- 性别: GG
- 专业: 理论和计算化学
3楼2014-07-16 14:33:42












回复此楼