Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Robots 0.28 KB | None | 0 0
  1. #include <iostream>
  2.  
  3.  
  4. using namespace std;
  5.  
  6.  
  7. int main()
  8. {
  9.  int  x;
  10.     cout << "2 \n";
  11.     cin >> x;
  12.     int y =  (x^2)*7 -(9%2) + (3*5) ;
  13.     cout << y;
  14.     cout << "\n";
  15.  
  16.  
  17.     if (y < 100)
  18.         cout << "low";
  19.     else
  20.         cout << "high";
  21.  
  22.  
  23.     return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement