Está en la página 1de 1

public static void main(String[] args) {

// TODO Auto-generated method stub


System.out.println("Bienvenidos");
System.out.println("Responda Si o No las siguientes preguntas");
String colon=javax.swing.JOptionPane.showInputDialog("Coln descubr
i Amrica");
switch(colon)
{
case"no":
{
System.out.println("Game Over");
break;
}
case"si":
{
String venezuela=javax.swing.JOptionPane.showInputDialog("La Independe
ncia de Venezuela fue en el ao 1810?");
switch(venezuela)
{
case"no":
{
System.out.println("Game Over");
break;
}
case"si":
{
String stereo=javax.swing.JOptionPane.showInputDialog("Soda St
ereo fue un grupo de rock Mexicano");
switch(stereo)
{
case "si":
{
System.out.println("Felicidades");
break;
}
case"no":
{
System.out.println("Game Over");
break;
}
}
}
}
}
}
}
}

También podría gustarte