Java、计算CD价值

Java、计算CD价值,第1张

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);
	}
}

 

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/5719298.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-18

发表评论

登录后才能评论

评论列表(0条)

保存