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

51nod 1003 阶乘后面0的数量

时间:2017-10-25 23:32:03      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:ace   blog   tput   std   math   black   scanf   示例   inpu   

n的阶乘后面有多少个0?
6的阶乘 = 1*2*3*4*5*6 = 720,720后面有1个0。
 
Input
一个数N(1 <= N <= 10^9)
Output
输出0的数量
Input示例
5
Output示例
1
找n!中2和5的个数取一个min,当然2的肯定比5少
#include<cmath>
#include<cstdio> 
#include<iostream> 
using namespace std;
int get_5(int x) {
    int ret=0;
    while(x>=5)ret+=x/5,x/=5;
    return ret;
}
int main () {
    int n;
    scanf("%d",&n);
    printf("%d\n",get_5(n));
    return 0;
}

 

51nod 1003 阶乘后面0的数量

标签:ace   blog   tput   std   math   black   scanf   示例   inpu   

原文地址:http://www.cnblogs.com/sssy/p/7732622.html

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