設計背景
設計思路
相關技術
功能
鍵入相關資料, 進行計算即可
**示例//[貸款本金×月利率×(1+月利率)^還款月數]÷[(1+月利率)^還款月數-1]
double yearnum = z
.base
.util
.parser
.trytodouble(this.cmbyear
.text, this.format);
double monthnum = yearnum * 12
; double gmoney = z
.base
.util
.parser
.trytodouble(this.txtgongmoney
.text, this.format);//公積金
double smoney = z
.base
.util
.parser
.trytodouble(this.txtshangmoney
.text, this.format);//商貸
double grate = z
.base
.util
.parser
.trytodouble(this.txtgongrate
.text, this.format) / 100f;//公積金利率
double srate = z
.base
.util
.parser
.trytodouble(this.txtshangrate
.text, this.format) / 100f;//商貸利率
double sup = z
.base
.util
.parser
.trytodouble(this.txtshangup
.text, this.format) / 100f;//商貸上浮
double gmonthrate = grate / 12f;
double smonthrate = (srate * (1 + sup)) / 12f;
double gpower = math.pow(1 + gmonthrate, monthnum);
double spower = math.pow(1 + smonthrate, monthnum);
double gmonth = (gmoney * gmonthrate * gpower) / (gpower - 1);
double smonth = (smoney * smonthrate * spower) / (spower - 1);
this.txt
.clear();
this.txt
this.txt
this.txt
this.txt
this.txt
this.txt
this.txt
github 房貸靈活計算器
使用者可以自己修改配置,最終打出一連串列表,選擇自己還貸承受範圍內的組合貸款。配置內容 總貸款額 total loan 200 商貸利率 百分比 sd percent 4.9 商貸利率優惠 折 sd discount 95 商貸年限 sd years 30 公積金利率 百分比 gjj percent...
基於Qt的房貸計算器
作業要求 1 採用物件導向的思想設計程式。2 採用c 語言進行設計。3 注意人機友好性。4 對使用者輸入,給出足夠的提示資訊。5 程式具有一定的健壯性,不會因為使用者的輸入錯誤引起程式執行錯誤而中斷執行。對輸入值的型別 大小範圍 字串的長度等,進行正確性檢查,對不合法的輸入值給出出錯資訊,指出錯誤型...
房貸計算器 源於新浪樂居
因為用到 所以記錄 房貸計算器 效果圖 公共方法 本金還款的月還款額 引數 年利率 貸款總額 貸款總月份 貸款當前月0 length 1 function getmonthmoney2 lilv,total,month,cur month 本息還款的月還款額 引數 年利率 貸款總額 貸款總月份 fu...