题目链接:https://www.51nod.com/onlineJudge/questionCode.html#!problemId=1003
题目:n的阶乘后面有多少个0?
因为2的个数足够,所以只要求可以拆成多少个5就行了。
#include <iostream>
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
scanf("%d",&n);
int ans=0;
while(n)
{
n/=5;
ans+=n;
}
cout<<ans<<endl;
}