zzp139 发表于 2008-8-5 11:56

【c++基础】计算长方体的体积

来源:http://www.eviler.cn
QUOTE:
#include <iostream.h>
//默认参数的用法
//计算长方体的体积

inline int Volume (int length=1,int width=1,int height=1)
{return length * width * height;}
main()
{
cout<<"the default box volume is:"
<< Volume()
<<"\n\nThe volume of a box with kenghe 10,\n"
<<"width 1 and height 1 is:"
<< Volume(10)
<<"\n\nThe volume of a box with kenghe 10,\n"
<<"width 5 and height 1 is:"
<< Volume(10,5)
<<"\n\nThe volume of a box with kenghe 10,\n"
<<"width 5 and height 2 is:"
<< Volume(10,5,2)
<<&#39;\n&#39;;
return 0;
}

302690561 发表于 2008-8-5 18:22

有什么用?????????

i249142260 发表于 2008-8-6 03:02

这太简单了....

yf8821008yf 发表于 2008-8-6 10:36

这……貌似没多大作用…………呵呵

qq513701092 发表于 2008-8-7 13:38

这```````````````
看不懂..........

哭ゞ著說後悔 发表于 2008-8-10 12:01

难道这就是天文....
看不懂啊!

maokecheng 发表于 2008-8-14 16:06

页: [1]
查看完整版本: 【c++基础】计算长方体的体积