Advertisement
MeehoweCK

Untitled

Aug 14th, 2019
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 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.fail())
  12.     {
  13.  
  14.         cout << "Podana liczba nie jest poprawna  wpisz ja jeszcze raz: ";
  15.         cin.clear();
  16.         cin.ignore(1000, '\n');
  17.         cin >> liczba;
  18.     }
  19.    
  20.     cout << "Podana liczba wynosi " << liczba << endl;
  21.  
  22.     return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement