我有這樣的代碼重新運行程序終止
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Enter menu number: ");
int value = scanner.nextInt();
if (value == 1){
System.out.println("first");
} else if (value == 2) {
System.out.println("second");
} else if (value == 3) {
System.out.println("third");
} else {
System.out.println("closing program");
}
}
我想要的行爲是「1」時輸入的菜單值和「第一」被打印出來,程序不會終止,但追溯到System.out.println("Enter menu number: ");
,因此可以輸入另一個菜單編號等。不知道該怎麼去做。
使用'while'循環。 –
你想要一個菜單驅動的程序。在這種情況下儘可能做到最好。 –
@VinayakPingale是的。你有答案嗎? – ollaollu