Advertisement
lkraichev

Dimbata_pedal

Nov 20th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.     int num;
  9.     cin >> num;
  10.    
  11.     int counter = 0;
  12.  
  13.     while (num >= 5)
  14.     {
  15.         counter += num / 5;
  16.         num /= 5;
  17.     }
  18.  
  19.     cout << counter << endl;
  20.     return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement