N!的位數兩種方法求解
阿新 • • 發佈:2019-02-18
轉載自:http://blog.csdn.net/bcwan_/article/details/51533773
第一種方法:
將n!表示成10的次冪,即n!=10^M 則不小於M的最小整數就是 n!的位數,對該式兩邊取對數,有 M
=log10^n!
即: M = log10^1+log10^2+log10^3...+log10^n
迴圈求和,就能算得M值,該M是n!的精確位數
- #include<iostream>
- #include<cstdio>
- #include<algorithm>
- #include<cmath>
-
usingnamespace
- int main()
- {
- int n,i;
- double d;
- while(scanf("%d",&n)!=EOF){
- d=0;
- for (i=1;i<=n;i++){
- d+=(double)log10(i);
- }
- printf("%d\n",(int)d+1);
- }
- return 0;
- }
第二種方法:直接套斯特靈公式 res=(long)( (log10(sqrt(4.0*acos(0.0)*n)) + n*(log10(n)-log10(exp(1.0)))) + 1 );
不過需要處理下n=1和n=0的情況。
- #include<iostream>
- #include<cstdio>
- #include<cstring>
- #include<algorithm>
- #include<cmath>
- usingnamespace std;
- int main()
- {
- long res;
- int n;
- cin>>n;
- if(n<=1)res=1;
- else
-
res=(long)((log10(sqrt(4.0*acos(0.0)*n))+n*(log10(n)-log10(exp(1.0))))+1);
- cout<<res<<endl;
- return 0;
- }