Advertisement
Guest User

Untitled

a guest
Mar 29th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void main()
  5. {
  6.     int liczba;
  7.     cout << "Podaj liczbe?" << endl;
  8.     cin >> liczba;
  9.  
  10.      do {
  11.           if( cin.good() ) {
  12.                cout << endl;
  13.           } else {
  14.                cout << "Zla liczba, sproboj jeszcze raz" << endl;
  15.           }
  16.      }
  17.      while ( cin.fail() ) ;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement