我正在开发一个程序,该程序将计算存款证明中的基本利息。该程序要求投资的金额和期限(最多五年)。取决于他们的任期是多少,是什么决定了获得多少利息。我使用if / else语句确定利率。然后,我使用循环来打印出每年年底帐户中有多少钱。我的问题是,当我运行该程序时,钱没有计算在内。

这是完整的代码。

import java.util.Scanner;

public class CDCalc
{
    public static void main(String args[])
        {
            int Count = 0;
            double Rate = 0;
            double Total = 0;


            Scanner userInput = new Scanner(System.in);

            System.out.println("How much money do you want to invest?");
            int Invest = userInput.nextInt();

            System.out.println("How many years will your term be?");
            int Term = userInput.nextInt();

            System.out.println("Investing: " + Invest);
            System.out.println("     Term: " + Term);

            if (Term <= 1)
            {
            Rate = .3;
            }

            else if (Term <= 2)
            {
            Rate = .45;
            }

            else if (Term <= 3)
            {
            Rate = .95;
            }

            else if (Term <= 4)
            {
            Rate = 1.5;
            }

            else if (Term <= 5)
            {
            Rate = 1.8;
            }


            int count = 1;
                    while(count <= 5)
                {

                    Total = Invest + (Invest * (Rate) / (100.0));

                    System.out.println("Value after year " + count + ": " + Total);
                    count++;
                }
        }
}


这就是我以10美元的投资,只是为了保持简单和5年的投资而得到的结果。

How much money do you want to invest?
10
How many years will your term be?
5
Investing: 10
     Term: 5
Value after year 1: 10.18
Value after year 2: 10.18
Value after year 3: 10.18
Value after year 4: 10.18
Value after year 5: 10.18


我的主要问题是我不知道如何使它不断增加。我不确定是否需要使用其他循环或其他方法。任何帮助,将不胜感激。

最佳答案

  Total = Invest + (Invest * (Rate) / (100.0));


您不会每年更改Invest的值,因此不会复杂。就像您每年从帐户中退回0.18美元的利息一样。

Total更改为Invest

关于java - 计算存单上的利息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13594881/

10-12 00:39