文章
7
粉丝
254
获赞
2
访问
79.7k
#include <stdio.h> #include <string.h> using namespace std; int main(){ int n; while(scanf("%d", &n) != EOF){ int ans = 0; while(n){ n = n / 5; ans = ans + n; } printf("%d\n", ans); } return 0; }
登录后发布评论
暂无评论,来抢沙发