我是靠谱客的博主 难过小蚂蚁,最近开发中收集的这篇文章主要介绍Java *2.21(财务应用:计算未来投资值)编写程序,读取投资总额、年利率和年数,然后使用下面的公式显示未来投资回报金额:,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

未来投资回报金额 = 投资总额 x(1+月利率)^ (年数 x 12)

例如:如果输入的投资金额为1000,年利率为3.25%,年数为1,那么未来投资回报金额为1032.98。

下面是一个运行示例:

Enter investment amount(输入投资金额)t:1000.56
Enter annual interest rate in percentage(输入百分比的年利率): 4.25
Enter the number of the years(输入的年数): 1

The accumulated value is $1032.98

package Chapter_03;

import java.util.Scanner;

public class Code2_21 {
public static void main(String[] args) {
	System.out.print("Enter investment amount:");
	Scanner input = new Scanner(System.in);
	double amount = input.nextDouble();
	System.out.print("Enter annual interest rate in percentage:");
	double rade = input.nextDouble() / (100.0 * 12);
	System.out.print("Enter the number of the years:");
	double year = input.nextInt();
	double value = amount * Math.pow(1 + rade,year * 12);
	System.out.println("The accumulated value is $" + String.format("%.2f",value));
}
}

输出

Enter investment amount:1000.56
Enter annual interest rate in percentage:4.25
Enter the number of the years:1
The accumulated value is $1043.92

最后

以上就是难过小蚂蚁为你收集整理的Java *2.21(财务应用:计算未来投资值)编写程序,读取投资总额、年利率和年数,然后使用下面的公式显示未来投资回报金额:的全部内容,希望文章能够帮你解决Java *2.21(财务应用:计算未来投资值)编写程序,读取投资总额、年利率和年数,然后使用下面的公式显示未来投资回报金额:所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部