码迷,mamicode.com
首页 > 其他好文 > 详细

N!的位数

时间:2020-06-13 10:43:04      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:com   name   str   space   app   mat   技术   style   efi   

斯特林公式(Stirling‘s approximation)

求位数

技术图片

 

 代码

#include<iostream>
#include<cmath>
using namespace std;
#define pi 3.1415926535
#define e 2.718281828459
int main()
{
    int n;
    cin >> n;
    printf("%d",(int)(1 + 0.5*log10(2 * pi*n) + n*log10(n / e)));
}

 

N!的位数

标签:com   name   str   space   app   mat   技术   style   efi   

原文地址:https://www.cnblogs.com/Jason66661010/p/13111743.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!