栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

Java、计算CD价值

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Java、计算CD价值

       假设你用10000美元投资一张CD,年获利率为5.75%。一个月后,这张CD价值为

        10000 + 10000 * 5.75 / 1200 = 10047.92
两个月之后,这张CD价值为

        10047.92 + 10047.92 * 5.75 / 1200 = 10096.06
三个月之后,这张CD价值为

        10096.06 + 10096.06 * 5.75 / 1200 = 10144.44
以此类推。
        编写程序,提示用户输入一个金额数(例如:10 000)、年获利率(例如:5.75)以及月份数(例如18),然后显示一个表格。


package pack2;

import java.util.Scanner;

public class CDValue {

	public static void main(String[] args) {
		try(Scanner input = new Scanner(System.in);) {
			System.out.print("Enter the initial deposit amount: ");
			double deposit = input.nextDouble();
			
			System.out.print("Enter annual percentage yield: ");
			double percentage = input.nextDouble();
			
			System.out.print("Enter maturity period (number of months): ");
			int month = input.nextInt();
			
			cdValue(deposit, percentage, month);
		}
	}

	//CD价值
	public static void cdValue(double deposit, double percentage, int month) {
		System.out.println("MonthtCD Value");
		for (int i = 1; i <= month; i++) 
			System.out.printf("%-6dt%.2fn", i, deposit += deposit * percentage / 1200);
	}
}

 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/723744.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号