0

一度実行した後に 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;
    }

}
4

1 に答える 1

2

条件が満たされるまでコードを実行し続ける、ある種のループを使用できます。

このリンクをチェックしてください。

次に例を示します。

do {
   code line 1;
   code line 2;
   code line 3;
   ...
} while(yourCondition);

yourConditionが満たされている場合 ( ) yourCondition == true、コードは ( ~ の間のコード ブロックを実行する) に戻り、code line 1条件が満たされない場合 ( ) に停止します。dowhileyourCondition == false

これがどのように機能するかを理解したら、これをコードに簡単に適用できます。

于 2013-05-15T22:47:38.800 に答える