请输入您的选择或输入0退出菜单
if(selectfruit == 1) {
System.out.println("Apple");
} else if(selectfruit == 2){
System.out.println("Banana");
} else if(selectfruit == 3) {
System.out.println("Orange");
} else if (selectfruit == 0) {
我应该在else if键入什么选项退出菜单?请帮忙!
答案 0 :(得分:1)
如果您将其留空,则不会写任何内容并继续您的申请,如果没有任何操作,它将退出。
如果在这些条件之后有更多命令,则仅。
if (selectfruit == 1) {
System.out.println("Apple");
}
else if (selectfruit == 2){
System.out.println("Banana");
}
else if (selectfruit == 3) {
System.out.println("Orange");
}
答案 1 :(得分:1)
如果您想退出应用,那么您可以使用
else if (selectfruit == 0) {
System.exit(0);
}
或者如果你想给你的控制台写一些消息,那么你可以写一些消息,比如“by by”
else if (selectfruit == 0) {
System.out.println("by by ");
}