首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
冰释芊芊的代码贴
→
C++
[C++]求一个数的阶乘
#include<iostream>
using namespace std;
int fab(int n);
int main()
{
int n,y;
cout<<"please input a number:"<<endl;
cin>>n;
y=fab(n);
cout<<"n!="<<endl;
return 0;
}
......................
阅读全部
| 2014年4月19日 23:58
1
冰释芊芊
全部(1)
C++(1)