标签:ace blog tput std math black scanf 示例 inpu
一个数N(1 <= N <= 10^9)
输出0的数量
5
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; }
标签:ace blog tput std math black scanf 示例 inpu
原文地址:http://www.cnblogs.com/sssy/p/7732622.html