0

初心者向けの Java クラスの課題があり、解決できないようです。トランザクションに基づいて毎月のコミッションを計算するプログラムを作成する必要があります。取引金額は、math.random() を使用して定義されます。

月は1月から始まります。JOPtionPane.showconfirmdialog を使用して、顧客がいるかどうかを尋ねます。はいの場合、クライアントがアイテムを購入したいかどうかを尋ねる別の確認ダイアログがあります。クライアントが商品の購入を承諾した場合、コミッションを計算します。

顧客がいない場合、または 1 か月の手数料が 15,000 に達した場合は、次の月にスキップしてそれを繰り返します。

最後に、年末までにコミッションが 100K に達すると、プログラムは終了し、セラーに年末まで休暇を取るように伝えます。これが実生活で本当だったら…

しかし、私の問題は、何らかの理由で、12 月以降に 100K に達しない場合にプログラムを終了する (そしてメッセージを表示する) ループをプログラムできないことです。私は取得し続けます

スレッド「メイン」の例外 java.lang.ArrayIndexOutOfBoundsException: Commission.main(Commission.java:42) で 12

public static void main(String[] args) {

    String[] months = { "January", "February", "March", "April",
            "May", // Initialize array for months of the year
            "June", "July", "August", "September", "October", "November",
            "December" };
    String[] diamonds = { "diamond", "ruby", "sapphire", "emerald",
            "topaz", "zircon" }; // Initialize array for different precious gems types
    double[] monthlyCommission; // Initialize double variable for total commission for the month
    monthlyCommission = new double[12]; // Initialize array with 12 values for monthly commission
    double yearTotal; // Initialize variable for total commission in the year
    double transaction; // Initialize value for a sale transaction
    double commission; // Initialize value for commission based on value of sale transaction
    int month = 0;
    int diamond;
    yearTotal = 0;

    JOptionPane.showMessageDialog(null, "Welcome to X's Jewelry Store!"); // Display welcome message dialog

    for (; monthlyCommission[month] < 15000;) {

        int storeCustomer = JOptionPane.showConfirmDialog(null,
                "Is there a customer in the store?", months[month]
                        + " month", JOptionPane.YES_NO_OPTION);
        while (storeCustomer == JOptionPane.NO_OPTION) { // Statement to process if there is no customer
            {
                month += 1;
                storeCustomer = JOptionPane.showConfirmDialog(null,
                        "Is there a customer in the store?", months[month]
                                + " month", JOptionPane.YES_NO_OPTION);
            }

        }
        if (storeCustomer == JOptionPane.YES_OPTION) { // Statement to process if there is a customer

            diamond = (int) (Math.random() * 6); // Choose randomly a value between 0-5
            transaction = Math.random() * 50000.0;
            transaction = Math.round(transaction * 100) / 100;

            int buyItem = JOptionPane.showConfirmDialog(null,
                    "Do you wish to buy this " + diamonds[diamond]
                            + " for "
                            + String.format("$%4.2f", transaction) + "?");
            if (buyItem == JOptionPane.NO_OPTION) // Statement to process if user does not want the item
                JOptionPane.showMessageDialog(null,
                        "No problem. See you next time.");

            if (buyItem == JOptionPane.YES_OPTION) { // Statement to process if user wishes to buy the item
                if (transaction <= 10000)
                    commission = transaction * 0.1;
                else if (transaction > 30000.0)
                    commission = 10000 * 0.10 + 20000 * 0.15
                            + (transaction - 30000) * 0.20;
                else
                    commission = 10000 * 0.10 + (transaction - 10000) * 0.15;

                commission = Math.round(commission * 100) / 100;
                monthlyCommission[month] += commission;
                yearTotal += commission;

                JOptionPane.showMessageDialog(null, String.format(
                        "Your commission for this transaction is $%4.2f",
                        commission));
                System.out.println(yearTotal); // Displays the commission total for the transaction
                if (yearTotal > 100000) // Exit loop if total commission for the year is greater than 100000
                    break;

            }

        }

        if (monthlyCommission[month] >= 15000) {
            JOptionPane.showMessageDialog(null, "You have earned $"
                    + String.format("%4.2f", monthlyCommission[month])
                    + ". You can rest the remainder of the month!"); // Display dialog once the monthly commission reaches 15000
            month += 1;
        }

    }
    JOptionPane.showMessageDialog(null,
            "Congratulations!! You have earned a total of $"
                    + String.format("%4.2f", yearTotal)
                    + ". Enjoy your vacation in Honolulu!"); // Display dialog once the yearly commission reaches 100000
}

}

4

1 に答える 1