Advertisement
Guest User

Untitled

a guest
Oct 10th, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #include <iostream>
  2. int main()
  3. {
  4. int liczba;
  5. bool wynik;
  6.  
  7.  
  8. do
  9. {
  10. std::cout << "podaj liczbe" << std::endl;
  11. std::cin >> liczba;
  12. if (std::cin.good())
  13. wynik = true;
  14. std::cin.clear();
  15. std::cin.sync();
  16.  
  17. } while( wynik == false );
  18.  
  19. std::cout << "wpisales :" << liczba;
  20.  
  21. return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement