Quiz: Exactly One Three
Because && has higher precedence than ||, you can omit the parentheses:
if (x == 3 && y != 3 || x != 3 && y == 3) ...
Because && has higher precedence than ||, you can omit the parentheses:
if (x == 3 && y != 3 || x != 3 && y == 3) ...