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

阶乘后面0的数量

时间:2017-05-22 21:31:39      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:cin   code   blog   gif   bsp   src   bit   long   pac   

技术分享
#include <bits/stdc++.h>
#define _xx ios_base::sync_with_stdio(0);cin.tie(0);
using namespace std;
typedef long long ll;
int main()
{
    ll n;
    cin >> n;
    int k = 0, m = 5, ans = 0;
    while(m <= n) ans += n/m, m *= 5;
    cout << ans << endl;
    return 0;
}
View Code

 

阶乘后面0的数量

标签:cin   code   blog   gif   bsp   src   bit   long   pac   

原文地址:http://www.cnblogs.com/NWUACM/p/6891243.html

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