如何在 Java 表达式中编写复利公式?

发布于 2024-10-31 15:33:46 字数 94 浏览 1 评论 0原文

到目前为止我已经

double futurevalue = moneyin * (1+ interest) * year;

So far I have

double futurevalue = moneyin * (1+ interest) * year;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

错々过的事 2024-11-07 15:33:46

Java 是正确的,公式是错误的。复利计算方式如下:

Kn = K0 * (1 + p/100)n

其中 n 是周期数, p 是每期的“利息”(每年,如果您查看年份,p=annual/12n=12 如果您查看月份,则有年利息作为输入并想要计算一年)


public double compoundInterest(double start, double interest, int periods) {
   return start * Math.pow(1 + interest/100, periods);
}

(注意:利息是百分比值,例如 4.2 表示 4.2%)

The Java is correct, the fomular plain wrong. Compund interest is calculated this way:

Kn = K0 * (1 + p/100)n

where n is the number of periods and p is the "interest" per period (annual, if you look at years, p=annual/12 and n=12 if you look at month, have an annual interest as input and want to calculate for a year)


public double compoundInterest(double start, double interest, int periods) {
   return start * Math.pow(1 + interest/100, periods);
}

(Note: interest is a percentage value, like 4.2 for 4.2%)

烙印 2024-11-07 15:33:46

我认为这是您遇到问题的公式的幂部分(乘以年份是不正确的)。对于整数年的简单复利,您可以使用 Math.pow() 函数是 Java SDK 的一部分。

double futureValue = moneyIn * Math.pow(1 + interest, year)

I assume it's the power part of the formula you are having trouble with (multiplying by the year isn't right). For simple compound interest with whole numbers of years you can use the Math.pow() function that's part of the Java SDK.

double futureValue = moneyIn * Math.pow(1 + interest, year)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文