diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2026-07-06 19:08:08 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2026-07-06 19:08:08 +0200 |
| commit | 96254947699986c59f0dc63d69fd4b76bd3ed43e (patch) | |
| tree | 6c4dca945d7f7427c48be234d827fe4d33be02c5 /01_introductory_problems/trailing_zeros_1618.cpp | |
| download | cses-96254947699986c59f0dc63d69fd4b76bd3ed43e.tar.gz cses-96254947699986c59f0dc63d69fd4b76bd3ed43e.zip | |
Initial commit
Diffstat (limited to '')
| -rw-r--r-- | 01_introductory_problems/trailing_zeros_1618.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/01_introductory_problems/trailing_zeros_1618.cpp b/01_introductory_problems/trailing_zeros_1618.cpp new file mode 100644 index 0000000..04cf85b --- /dev/null +++ b/01_introductory_problems/trailing_zeros_1618.cpp | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | #include <iostream> | ||
| 2 | |||
| 3 | int main() { | ||
| 4 | int n, c{0}; | ||
| 5 | std::cin >> n; | ||
| 6 | while (n > 0) | ||
| 7 | c += (n /= 5); | ||
| 8 | std::cout << c << std::endl; | ||
| 9 | } | ||
