https://www.acmicpc.net/problem/1676
#include <iostream>
using namespace std;
int main() {
int n;
long result = 1;
int tmp,cnt = 0;
scanf("%d", &n);
for (int i = n; i > 0; i--)
{
tmp = i;
while (tmp % 5 == 0) {
cnt++;
tmp = tmp / 5;
}
}
printf("%d", cnt);
}
'Programming > BaekJoon' 카테고리의 다른 글
[C++] 백준 1011번 : Fly me to the Alpha Centauri (0) | 2019.02.20 |
---|---|
[C++] 백준 1010번 : 다리 놓기 (0) | 2019.02.20 |
[C++] 백준 4344번 : 평균은 넘겠지 (0) | 2019.02.19 |
[C++] 백준 1110번 : 더하기 사이클 (0) | 2019.02.19 |
[C++] 백준 1085번 : 직사각형에서 탈출 (0) | 2019.02.19 |