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

EOJ 3233 Math

时间:2018-07-05 23:25:58      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:个数   namespace   space   code   bsp   its   style   int   scanf   

变相的问你N!后面0的个数而已,公式

#include<bits/stdc++.h>
using namespace std;

int cnt(int x){
    if(x<5)return 0;
    else return x/5+cnt(x/5);
}

int main(){
    int n;
    while(~scanf("%d",&n)){
        printf("%d\n",cnt(n));
    }
}

 

EOJ 3233 Math

标签:个数   namespace   space   code   bsp   its   style   int   scanf   

原文地址:https://www.cnblogs.com/TAMING/p/9270686.html

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