Guest User

Untitled

a guest
Dec 18th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int x=0;
  8.     cout << "Podaj liczbe z zakresu -40 do 50" << endl;
  9.     cin>>x;
  10.     if ( x < -40 || x > 50 );
  11.  
  12.     else cout<< "Zły przedział"<< endl;
  13.  
  14.  
  15.     return 0;
  16. }
Add Comment
Please, Sign In to add comment