Instructions were to " set the boolean variable tricky equal to the result (either true or false)." but it gives me an error message even though my code prints the message in the else block.
EDIT: here’s the whole code
====Try again. The variable tricky should equal either true or false.====
public class GeneralizationsB {
public static void main(String[] args) {
boolean tricky = ( 3 >= 3 && !(true || true) );
if(tricky) {
System.out.println("Stuck in the past...");
}else {
System.out.println("Upgraded to the future!");
}
int subwayTrain = 5;
switch (subwayTrain){
case 1 : System.out.println("This is a South Ferry bound train!");
break;
case 5 : System.out.println("This is a Brooklyn bound train!");
break;
case 7 : System.out.println("This is a Queens bound train!");
break;
default:
System.out.println("I'm not sure where that train goes...");
}
}
}