C语言中如何编程计算阶乘?

2024-11-29 16:38:58
推荐回答(1个)
回答1:

递归函数
fun(int n)
{ if (n==0) return 1;
else return n*fun(n-1);
}
只要主函数调用这个函数,即可计算阶乘。