标签:
int fac(int n){ int f; if (n==0) f=1; else f=n*fac(n-1); return f; }
阶乘算法
原文地址:http://www.cnblogs.com/mawenqiang/p/4734992.html