标签:style http io ar color os sp for on
50
30414093201713378043612608166064768844377641568960512000000000000
初级代码:#include<stdio.h> #include<string.h> int a[20000];//按位存储计算结果(数组中的每一个位置存放一个数字) int main() { int n; int i,j,temp; while(scanf("%d",&n)!=EOF){ if(n == 0 || n == 1){ printf("1\n"); continue; } memset(a,0,sizeof(a)); a[1]=1; int len = 1;//阶乘结果的位数,初始化为1 for(i=1;i<=n;i++){//阶乘开始,从1 到 n; for(j=1;j<=len;j++){ a[j] *= i;//数组中的每一位都和i相乘 } for(j=1;j<=len;j++){//对数组中大于10的每一位进行分割,达到按位存储 if(a[j]<10)continue; temp = j; while(temp <= len){ if(a[len]>9)len++;//说明产生进位 a[temp+1]+=a[temp]/10; a[temp] %= 10; temp ++; } } } for(i=len;i>=1;i--){ printf("%d",a[i]); } printf("\n"); } return 0; }
标签:style http io ar color os sp for on
原文地址:http://blog.csdn.net/u012437355/article/details/41383199