Josif_tepe

Untitled

Dec 6th, 2025
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. #include <iostream>
  2. #include <set>
  3. #include <algorithm>
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.     int x;
  9.     cin >> x;
  10.    
  11.     int broj_na_cifri = 0;
  12.     for(int i = x; i > 0; i /= 10) {
  13.         broj_na_cifri++;
  14.     }
  15.    
  16.     if(x == 0) {
  17.         broj_na_cifri = 1;
  18.     }
  19.     cout << broj_na_cifri << endl;
  20.    
  21.     return 0;
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment