如何更改我的代码以使其在运行一次后重新运行 if/else-if 语句。
例如,我该如何去:顶部菜单>提示输入(即 2)>子菜单>提示输入(1 或 2)>添加/删除>返回顶部菜单/子菜单
/**
* A simple program of a grocery store, which assists
* the purchases, calculate total price and display bill.
**/
public class GroceryStore {
// this method manages the entire shopping process
public void start() {
final String UPI = "wcor690"; // a constant for student UPI
Stock stock = new Stock();
stock.loadItems("stock.txt");
Cart cart = new Cart();
System.out.println("==============================================================");
System.out.println("------This is a simple grocery store program by " + UPI + ".------");
topMenu();
int input = getChoice(1, 3);
if (input == 1){
stock.displayItems();
topMenu();
}
else if (input == 2){
subMenu();
input = getChoice(1, 4);
if (input == 1){
String itemCode = Keyboard.readInput();
cart.addItem(stock.findItem(itemCode));
topMenu();
}
else if (input == 2){
String itemCode = Keyboard.readInput();
cart.deleteItem(itemCode);
subMenu();
}
else if (input == 3){
cart.checkOut();
}
else if (input == 4){
cart.deleteAll();
System.out.println("All items are cleared from the shopping cart");
topMenu();
}
}
else if (input == 3){
System.out.println("Exit");
}
stock.saveItems("stock2.txt");
System.out.println("--------------------------------------------------------------");
System.out.println("---------------Thank you for shopping with us!----------------");
System.out.println("==============================================================");
}
// this method displays the top-level menu
private void topMenu() {
System.out.println("1. Show items");
System.out.println("2. Start shopping online");
System.out.println("3. Exit");
}
// this method displays the second-level menu
private void subMenu() {
System.out.println("1. Add item");
System.out.println("2. Remove item");
System.out.println("3. Checkout");
System.out.println("4. Exit without buying");
}
// this method gets the user's input choice
private int getChoice(int lower, int upper) {
String userInput = Keyboard.readInput();
int input = Integer.parseInt(userInput);
while (input<lower || input>upper){
System.out.println("Invalid choice, please enter a valid choice");
input = Integer.parseInt(Keyboard.readInput());
}
return input;
}
}