Advertisement
MeehoweCK

Untitled

Jul 9th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.46 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     cout << "Podaj liczbe calkowita: ";
  8.     int liczba;
  9.     cin >> liczba;
  10.  
  11.     while(cin.fail())
  12.     {
  13.         cout << "liczba nie zostala poprawnie wczytana. Wpisz ja jeszcze raz: " << endl;
  14.         cin.clear();                // opuszcza flagฤ™ bล‚ฤ™du
  15.         cin.ignore(1000, '\n');     // oczyszcza bufor wejล›cia
  16.         cin >> liczba;
  17.     }
  18.     cout << liczba << endl;
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement