C语言求N!用递归? 日期:2018-04-21 14:00:21 人气:1 C语言求N!用递归? int fac(int n) { int fact; if (n==1) return fact = 1; else return fac(n-1)*n; }