房貸計算器 源於新浪樂居

2021-09-01 19:46:09 字數 2123 閱讀 5692

因為用到 所以記錄

房貸計算器:

效果圖

公共方法:

//本金還款的月還款額(引數: 年利率 / 貸款總額 / 貸款總月份 / 貸款當前月0~length-1)

function getmonthmoney2(lilv, total, month, cur_month)

//本息還款的月還款額(引數: 年利率/貸款總額/貸款總月份)

function getmonthmoney1(lilv, total, month)

1、等額本息

(1)公積金/商業貸款

//2.本息還款

//月均還款

var month_money1 = getmonthmoney1(lilv, daikuan_total, month);//呼叫函式計算

fmobj.month_money1.value = math.round(month_money1 * 100) / 100 + "(元)";

//還款總額

var all_total1 = month_money1 * month;

fmobj.all_total1.value = math.round(all_total1 * 100) / 100;

//支付利息款

fmobj.accrual1.value = math.round((all_total1 - daikuan_total) * 100) / 100;

(2)混合貸款

//2.本息還款

//月均還款

var month_money1 = getmonthmoney1(lilv_sd, total_sy, month) + getmonthmoney1(lilv_gjj, total_gjj, month);//呼叫函式計算

fmobj.month_money1.value = math.round(month_money1 * 100) / 100 + "(元)";

//還款總額

var all_total1 = month_money1 * month;

fmobj.all_total1.value = math.round(all_total1 * 100) / 100;

//支付利息款

fmobj.accrual1.value = math.round((all_total1 - daikuan_total) * 100) / 100;

2、等額本金

(1)公積金/商業貸款

//1.本金還款

//月還款

var all_total2 = 0;

var month_money2 = "";

for (j = 0; j < month; j++)

fmobj.month_money2.value = month_money2;

//還款總額

fmobj.all_total2.value = math.round(all_total2 * 100) / 100;

//支付利息款

fmobj.accrual2.value = math.round((all_total2 - daikuan_total) * 100) / 100;

(2)混合貸款

for (j = 0; j < month; j++) 

fmobj.month_money2.value = month_money2;

//還款總額

fmobj.all_total2.value = math.round(all_total2 * 100) / 100;

//支付利息款

fmobj.accrual2.value = math.round((all_total2 - daikuan_total) * 100) / 100;

C 房貸計算器

設計背景 設計思路 相關技術 功能鍵入相關資料,進行計算即可 示例 貸款本金 月利率 1 月利率 還款月數 1 月利率 還款月數 1 double yearnum z base util parser trytodouble this.cmbyear text,this.format double ...

房貸靈活計算器

使用者可以自己修改配置,最終打出一連串列表,選擇自己還貸承受範圍內的組合貸款。配置內容 總貸款額 total loan 200 商貸利率 百分比 sd percent 4.9 商貸利率優惠 折 sd discount 95 商貸年限 sd years 30 公積金利率 百分比 gjj percent...

基於Qt的房貸計算器

作業要求 1 採用物件導向的思想設計程式。2 採用c 語言進行設計。3 注意人機友好性。4 對使用者輸入,給出足夠的提示資訊。5 程式具有一定的健壯性,不會因為使用者的輸入錯誤引起程式執行錯誤而中斷執行。對輸入值的型別 大小範圍 字串的長度等,進行正確性檢查,對不合法的輸入值給出出錯資訊,指出錯誤型...