| 查看: 783 | 回复: 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; } |
» 猜你喜欢
浙江师范大学是怎么坑我的
已经有7人回复
求教各位大神:2026教育部人文社科青年基金项目何时公示呀?
已经有6人回复
面上有专家说实验设备不是我们单位的
已经有8人回复
科研求助
已经有4人回复
博士去二本高校当辅导员,如何调整心态?
已经有11人回复
江苏省自然基金 什么时候出结果
已经有6人回复
闲聊
已经有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









回复此楼