首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴冰释芊芊的代码贴全部
#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
冰释芊芊