void Menue{ void Menu()throws java.io.IOException{ char menu; String name; System.out.println("\t\t\t\t\tMENU"); System.out.println("1. Bioraphy"); System.out.println("2.Start game"); System.out.println(); System.out.print("Choose one: "); menu= (char) System.in.read(); swihch(menue){ case '1' : System.out.println ("......."); this.Menue; break; case '2' : .......... } I want the Menue method to run again after selecting 1. It is called, but I have no way to enter the char menu. Only System.out.prinln () is displayed; and then break;
case '1' : System.out.println ("......."); this.Menue; break;