Advertisement
MeehoweCK

Untitled

May 25th, 2023
666
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int liczba;
  7.     cout << "Podaj liczbe calkowita: ";
  8.     cin >> liczba;
  9.  
  10.     int liczbaCyfr = 0;
  11.     while (liczba > 0)
  12.     {
  13.         liczba /= 10;
  14.         ++liczbaCyfr;
  15.     }
  16.  
  17.     cout << liczbaCyfr << endl;
  18.  
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement