Advertisement
Guest User

Untitled

a guest
Oct 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3.  
  4. using namespace std;
  5. int x,liczba;
  6. int main()
  7. {
  8. do
  9. {
  10. cout << "Podaj kolejna liczbe calkowita" << endl;
  11. cin >> x;
  12.  
  13. } while (x >= 0);
  14.  
  15. // ((f < 4) && (f > 12)
  16. system("PAUSE");
  17. return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement