赞
踩
简单描述就是求n!= ? n! = n*(n-1)(n-2)(n-3)*…*1。
long fac_iteration(int n){ long value = 1; for(int i=1;i<=n;i++