josiftepe

Untitled

Oct 18th, 2020
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int x;
  8. int a=0;
  9. int b=0;
  10.  
  11. cin>>x;
  12.  
  13. if (x==0){
  14.    b=1;
  15.  }
  16.  
  17.  
  18. while (x>a){
  19.     x/=10;
  20.     b+=1;
  21. }
  22.  
  23.  cout<<b;
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30. return 0;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment