私は Java でのプログラミングの初心者であり、この問題を解決する方法がわかりません。
「年間 7.5% で複利計算した場合、2,500 ドルの投資が少なくとも 5,000 ドルの価値になるまでにかかる年数を計算する投資アプリケーションを作成する」
for ループと do-while ループを使用して問題を解決しようとしましたが、うまくいきません。助けてください!
これは、これまですべてを試した後の結果です。
/*Investment.java
*This program determines how many years it would take for $2500 to turn into $5000 if
*compounded at 7.5% annually.
*Date: October 27th, 2012
*/
/**
* The following application calculates how many years it will take for $2500 to
* turn into $5000 if compounded at 7.5% annually.
*/
public class Investment {
public static void main(String[] args) {
final int MAX_AMOUNT = 5000;
int investment = 2500;
double interest = 0.075;
double totalValue;
do {
totalValue = (investment + (investment * interest));
} while (totalValue < MAX_AMOUNT);
System.out.println(totalValue);
}
}
助けていただければ幸いです。
ありがとう、