I am having a problem with the second problem… here is what I have…
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 = 9;
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...");
}
}
Estaba con ese ejercicio y lo que pasa es que después de pasar el punto 1, se debe poner de nuevo en comentarios // la linea 4 y 5 , para así poder continuar con el 2 y 3 sin que presente error