Hello!
I’m stuck at “11. Equality Operators”.
The instruction is “Use any equality operator to directly compare two Boolean values. Do not declare any variables”
The code is
public class RelationalOperators {
public static void main(String[] args) {
System.out.println( );
}
}
I tried to enter “true != false”, “1+3 = 4-1”, …, but that all didn’t work. What is the solution to this excercise?