Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.11 KB | None | 0 0
  1.  
  2. int main() {
  3.   int x = 2, y = 2;
  4.   int result = (x >= 0) && (pow(y, 2) > 4);
  5.   cout << result << endl;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement