Advertisement
MeehoweCK

Untitled

Aug 14th, 2019
248
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.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.         cout << "Podana liczba wynosi" << liczba << ".\n";
  19.     }
  20.     else
  21.     {
  22.         cout << "Podana liczba wynosi " << liczba << endl;
  23.  
  24.  
  25.     }
  26.     return 0;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement