在1x2x3x4x...x999x1000个自然数乘积中末尾有多少个连续的0?

问题描述:

在1x2x3x4x...x999x1000个自然数乘积中末尾有多少个连续的0?

#include
using namespace std;
int main()
{
//只需算1,2,3,……1000里面有多少个5即可,因为5最终会乘以2变成尾数为0
int n=1000;
int ans = 1000/5+1000/25+1000/125+1000/625;
cout