<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
Hi Guys, need your help.
For some reason my code is not working and i keep getting the below error message, weird thing on the second part of the exercise I did not change the code and it run correctly, so i dont understand what was the main objective of that section.
<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/courses/learn-java/lessons/conditionals-control-flow/exercises/generalizations-conditionals
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
GeneralizationsB.java:4: error: not a statement
(3 >= 3 && !(true || true));
^
1 error
public class GeneralizationsB {
public static void main(String args) {
(3 >= 3 && !(true || true));
boolean tricky=false;
if(2015 > 2016) {
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...");
}
}
}
<do not remove the three backticks above>
Thanks for the help.
Diego