Hi iam at lesson 11(The last one)
And iam stuck in something
Instructions:
**Use the precedence rules to help you evaluate the Boolean expression in the single line comment above the tricky variable.
Then, set the boolean variable tricky equal to the result (either true or false).**
my code:
boolean tricky = ( 3 >= 3 && !(true || true)) ;
What is my problem here
3 >= 3 = true;
!(true || true) = false;
true && false = false;
So what is the problem
please answer fast