socek

Untitled

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