第五章第七题(金融应用:计算将来的学费)(Financial application: compute future tuition)

第五章第七题(金融应用:计算将来的学费)(Financial application: compute future tuition)

  • **5.7(金融应用:计算将来的学费)假设今年某大学的学费为10000美元,学费的年增长率为5%。一年后,学费将是10500美元。编写程序,计算10年后的学费,以及从现在开始的10年后算起,4年内总学费是多少?
    **5.7(Financial application: compute future tuition) Suppose that the tuition for a university is $10,000 this year and increases 5% every year. In one year, the tuition will be $10,500. Write a program that computes the tuition in ten years and the total cost of four years’ worth of tuition after the tenth year.
  • 参考代码:
package chapter05;

public class Code_07 {
    public static void main(String[] args) {
        double money = 10000,sum = 0;
        for (int i = 0;i < 10;i++){
            money *= 1.05;
            if (i < 4)
                sum += money;
        }
        System.out.println("The tuition in ten years is " + money);
        System.out.println("The total cost of four years’ worth of tuition after the tenth year " + sum);
    }
}

  • 结果显示:
The tuition in ten years is 16288.946267774418
The total cost of four years’ worth of tuition after the tenth year 45256.3125

Process finished with exit code 0

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值