Coder涂图


私信TA

用户名:2421574029

访问量:28533

签 名:

等  级
排  名 207
经  验 6464
参赛次数 16
文章发表 76
年  龄 20
在职情况 学生
学  校 辽宁工程技术大学
专  业 软件工程

  自我简介:

就是个普通人

import java.util.Scanner;

public class Main{

	/** 贷款计算
	 * @param args
	 */
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		//定义贷款总额(万元)
		int total = in.nextInt();
		//定义月利率(浮点数)
		double monthRate = in.nextDouble();
		//定义贷款总年份
		int total_month = in.nextInt();
		
		//还款计算公式
		//每月还款金额= (贷款本金/ 还款总月数)+(本金 - 已归还本金累计额)×每月利率
		//单位:元
		int result_money;
		result_money = (int) ((total*10000/total_month)+(total*10000*monthRate));
		System.out.println(result_money);
	}

}
 

0.0分

1 人评分

  评论区

  • «
  • »