0

最後に do while ループを使用してこの複利計算プログラムを作成しようとしていますが、最終的な金額を出力する方法がわかりません。

これが私がこれまでに持っているコードです:

public static void main(String[] args) {
    double amount;
    double rate;
    double year;

    System.out.println("This program, with user input, computes interest.\n" +
    "It allows for multiple computations.\n" +
    "User will input initial cost, interest rate and number of years.");

    Scanner keyboard = new Scanner(System.in);

    System.out.println("What is the initial cost?");
    amount = keyboard.nextDouble();

    System.out.println("What is the interest rate?");
    rate = keyboard.nextDouble();
    rate = rate/100;

    System.out.println("How many years?");
    year = keyboard.nextInt();


    for (int x = 1; x < year; x++){
        amount = amount * Math.pow(1.0 + rate, year);
                }
    System.out.println("For " + year + " years an initial " + amount + " cost compounded at a rate of " + rate + " will grow to " + amount);


    String go = "n";
    do{
        System.out.println("Continue Y/N");
        go = keyboard.nextLine();
    }while (go.equals("Y") || go.equals("y"));
}

}

4

1 に答える 1

1

問題は、amount = amount * Math.pow(1.0 + rate, year);. 元の金額を計算された金額で上書きしています。元の値を保持しながら計算値を保持するには、別の値が必要です。

そう:

double finalAmount = amount * Math.pow(1.0 + rate, year);

次に、出力で:

System.out.println("For " + year + " years an initial " + amount + 
    " cost compounded at a rate of " + rate + " will grow to " + finalAmount);

編集: または、行、変数を保存して、インラインで計算を行うこともできます。

System.out.println("For " + year + " years an initial " + amount + 
    " cost compounded at a rate of " + rate + " will grow to " + 
    (amount * Math.pow(1.0 + rate, year)));
于 2013-10-03T03:44:55.480 に答える