求 n!的后面有多少个 0
#include <stdio.h>#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main()
{int n,count=0,m;
scanf("%d",&n);
for(;n>4;n--)
{m=n;
while(m%5==0&&m>0)
{
m/=5;
count++;
}
}
printf("%d\n",count);
} 这是我编的程序,老是有个测试用例超时,但它又是保密项,不知道是输入的是啥?希望大神帮我看下我的程序哪还有问题?(不要用pow函数)谢谢了