[求助]n!的递归,但无论N为何值,程序总显示同一个结果
int n,t;
int f(n)
{
if(n<=1) t=1;
else
t=f(n-1)*n
return 0;
}
void main()
{
cin>>n;
cout>>'N!='>>t>.endl;
}
但是不论N是何值程序总是输出一个很大的数,请问这是为什么啊?
说实话你写的东东实在残不忍睹
1. 程序编译不可能通过!!!! f(n)里没有声明 t;
2. 出现很大的数是因为 int t没有初始化;
3. 程序根本没有调用 f(int )函数,只是输出了t;
4. 函数返回值应该是 t
//VC++下编译
#include<iostream.h>
int fact(const unsigned int n)
{
if(n==1)
return 1;
else
return n*fact(n-1);
}
void main()
{
cout<<"输入数:";
int num=1;
cin>>num;
cout<<'\n'<<num<<"的阶乘为"<<fact(num);
}