首页 > 代码库 > poj 1423 Big Number
poj 1423 Big Number
1 /** 2 斯特林(Stirling)公式: 3
4 求 n! 的位数 5 6 ceil函数的作用是求不小于给定实数的最小整数。 7 **/ 8 #include <iostream> 9 #include <algorithm> 10 #include <cmath> 11 using namespace std; 12 const double pi = acos(-1.0); 13 int main() 14 { 15 int t; 16 cin>>t; 17 double n; 18 while(t--){ 19 cin>>n; 20 if(n==1){ 21 cout<<1<<endl; 22 continue; 23 } 24 int res = ceil((0.5*log(2*pi*n)+n*log(n)-n)/log(10.0)); 25 cout<<res<<endl; 26 } 27 return 0; 28 }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。