zoukankan      html  css  js  c++  java
  • 算法笔记_114:等额本金(Java)

    1 等额本金

    标题:等额本金
    
        小明从银行贷款3万元。约定分24个月,以等额本金方式还款。
    
        这种还款方式就是把贷款额度等分到24个月。每个月除了要还固定的本金外,还要还贷款余额在一个月
    
    中产生的利息。
    
        假设月利率是:0.005,即:千分之五。那么,
    
        第一个月,小明要还本金 1250, 还要还利息:30000 * 0.005,总计 1400
        第二个月,本金仍然要还 1250, 但利息为:(30000-1250) * 0.005 总计 1393.75
    
        请问:小明在第15个月,应该还款多少(本金和利息的总和)?
    
        请把答案金额四舍五入后,保留两位小数。注意:32.5,一定要写为:32.50
    
        通过浏览器提交答案,这是一个含有小数点和两位小数的浮点数字。不要写多余内容(例如:多写了“元
    
    ”或添加说明文字)
    
    1312.50
    public class Main {
    
        public void printResult() {
            double money = 30000;
            for(int i = 1;i <= 14;i++) {
                money = money * (1 + 0.005) - 1250 - money * 0.005;
            }
            double result = 1250 + money * 0.005;
            System.out.println(result);
            return;
        }
        
        public static void main(String[] args) {
            Main test = new Main();
            test.printResult();
        }
    
    }
  • 相关阅读:
    Android Studio使用教程(一)
    Android Studio设置字体
    Android Studio设置字体
    8.8 Deep Learning Software
    梯度下降法与牛顿迭代法 求拟合参数
    什么是Condition Number(条件数)?
    什么是卷积?
    SLAM数据集
    TensorFlow安装教程
    Caffe
  • 原文地址:https://www.cnblogs.com/liuzhen1995/p/6624997.html
Copyright © 2011-2022 走看看