Advertisement
Josif_tepe

Untitled

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