Here is where im stuck. The exercise says to make it print false. I made it print false with no errors after running it but it’s not letting me pass the section.
I don’t believe I did it wrong because it prints false when i run it. Isn’t that what’s it told me to do?
Here is my code that prints false
public class Precedence {
public static void main(String[] args) {
boolean riddle = ( !(1 < 8) &&(5 > 2 || 3 < 5));
System.out.println(riddle);
}
}