标签:style blog io ar color os sp for on
N!阶乘是一个非常大的数,大家都知道计算公式是N!=N*(N-1)······*2*1.现在你的任务是计算出N!的位数有多少(十进制)?
3 1 3 32000
1 1 130271
#include<stdio.h> #include<math.h> int main() { int i,m,t,k; double sum; scanf("%d",&k); while(k--) { t=0;sum=0; scanf("%d",&m); for(i=1;i<=m;i++) sum+=log10(i); t=sum+1; printf("%d\n",t); } return 0; }
标签:style blog io ar color os sp for on
原文地址:http://blog.csdn.net/tanggangzuiniu12/article/details/41596149