Posted in 面试题 onOctober 21, 2014
代码如下:
long int fact(int n)
{
int x;
long int y;
if(n {
printf(“error!”);
}
if(n==0)
return 1;
x=n-1;
y=fact(x);
return (n*y);
}
long int fact(int n)
{
int x;
long int y;
if(n {
printf(“error!”);
}
if(n==0)
return 1;
x=n-1;
y=fact(x);
return (n*y);
}
编写用C语言实现的求n阶阶乘问题的递归算法
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Tags in this post...
Reply on: @reply_date@
@reply_contents@