Advertisement
MeehoweCK

Untitled

Jul 10th, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.49 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int liczba;
  8.     cout << "Prosze podac liczbe calkowita: ";
  9.     cin >> liczba;
  10.  
  11.     if(cin.good())
  12.         cout << liczba << endl;
  13.     else
  14.     {
  15.         cout << "Liczba nie zostala poprawnie wpisana" << endl;
  16.         cin.clear();                // opuszcza flagę błędu w buforze
  17.         cin.ignore(1000, '\n');     // czyści bufor zapisu
  18.         cin >> liczba;
  19.         cout << liczba << endl;
  20.     }
  21.     return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement