1. public void ProcessRequest(HttpContext context)
  2. {
  3. context.Response.ContentType = "application/json";
  4. string json=string.Empty;
  5. string dktype = (!string.IsNullOrEmpty(context.Request.Form["dktype"]) ? context.Request.Form["dktype"].ToString().Trim() : "0");//贷款方式
  6. string calculatype = (!string.IsNullOrEmpty(context.Request.Form["calculatype"]) ? context.Request.Form["calculatype"].ToString().Trim() : "0");//计算方式
  7. string paymentType = (!string.IsNullOrEmpty(context.Request.Form["paymentType"]) ? context.Request.Form["paymentType"].ToString().Trim() : "0");//还款方式
  8. string unitPrice = (!string.IsNullOrEmpty(context.Request.Form["unitPrice"]) ? context.Request.Form["unitPrice"].ToString().Trim() : "0");//单价
  9. string acreage =(!string.IsNullOrEmpty(context.Request.Form["acreage"])?context.Request.Form["acreage"].ToString().Trim():"0");//面积
  10. string mortgage = (!string.IsNullOrEmpty(context.Request.Form["mortgage"])?context.Request.Form["mortgage"].ToString().Trim():"0");//按揭成数
  11. string loanceiling = (!string.IsNullOrEmpty(context.Request.Form["loanceiling"]) ? context.Request.Form["loanceiling"].ToString().Trim() : "0");//贷款总额
  12. string countYears = (!string.IsNullOrEmpty(context.Request.Form["countYears"]) ? context.Request.Form["countYears"].ToString().Trim() : "0");//按揭年数
  13. string lilv = (!string.IsNullOrEmpty(context.Request.Form["lilv"]) ? context.Request.Form["lilv"].ToString().Trim() : "0");//年利率
  14.  
  15. //组合型贷款
  16. string syx_loanceiling = (!string.IsNullOrEmpty(context.Request.Form["syx_loanceiling"]) ? context.Request.Form["syx_loanceiling"].ToString().Trim() : "0");//商业贷款
  17. string gjj_loanceiling = (!string.IsNullOrEmpty(context.Request.Form["gjj_loanceiling"]) ? context.Request.Form["gjj_loanceiling"].ToString().Trim() : "0");//公积金贷款
  18. string sy_lilvValues = (!string.IsNullOrEmpty(context.Request.Form["sy_lilvValues"]) ? context.Request.Form["sy_lilvValues"].ToString().Trim() : "0");//商业贷款利率
  19. string gjj_lilvValues = (!string.IsNullOrEmpty(context.Request.Form["gjj_lilvValues"]) ? context.Request.Form["gjj_lilvValues"].ToString().Trim() : "0");//公积金贷款利率
  20. switch (dktype)
  21. {
  22. case "sydk"://商业贷款
  23. case "gjjdk"://公积金贷款
  24. switch (calculatype)
  25. {
  26. case "calcula_one"://根据面积,单价计算
  27. json = returnResult(double.Parse(unitPrice), double.Parse(acreage), double.Parse(mortgage), Utils.ObjToInt(countYears, 1), double.Parse(lilv), paymentType);
  28. break;
  29. case "calcula_two"://根据贷款总额计算
  30. json = returnResult(double.Parse(loanceiling), int.Parse(countYears), double.Parse(lilv), paymentType);
  31. break;
  32. }
  33. break;
  34. case "zhxdk"://组合型贷款
  35. json = returnResult(double.Parse(syx_loanceiling), double.Parse(sy_lilvValues), double.Parse(gjj_loanceiling), double.Parse(gjj_lilvValues), Utils.ObjToInt(countYears,1), paymentType);
  36. break;
  37. }
  38. context.Response.Write(json);
  39. }
  40.  
  41. /// <summary>
  42. /// 商业贷款-根据面积,单价计算
  43. /// </summary>
  44. /// <param name="unitPrice">单价</param>
  45. /// <param name="acreage">面积</param>
  46. /// <param name="mortgage">按揭成数</param>
  47. /// <param name="countYears">按揭年数</param>
  48. /// <param name="lilv">年利率</param>
  49. /// <param name="paymentType">还款方式</param>
  50. /// <returns></returns>
  51. private string returnResult(double unitPrice, double acreage, double mortgage, int countYears, double lilv, string paymentType)
  52. {
  53. StringBuilder json = new StringBuilder();
  54. double newlilv = lilv / 100/12;//月利率
  55. double purchase=0;//房款总额;
  56. double Loan=0;//贷款总额
  57. double monthlypayments=0;//平均月供
  58. double Total=0;//还款总额
  59. double Interest=0;//总利息
  60. double Shoufu=0;//首付
  61. switch (paymentType.Trim())
  62. {
  63. case "debx"://等额本息
  64. purchase = Math.Round(unitPrice * acreage,2);
  65. Loan = Math.Round(purchase * mortgage,2);
  66. monthlypayments =Math.Round((Loan * newlilv * Math.Pow(1 + newlilv, countYears * 12)) / (Math.Pow(1 + newlilv, countYears * 12) - 1),2);
  67. Total = Math.Round(monthlypayments * countYears * 12,2);
  68. Interest = Math.Round(Total - Loan,2);
  69. Shoufu = Math.Round(purchase - Loan,2);
  70. json.Append("{\"purchase\":\"" + purchase.ToString() + "\",\"Loan\":\"" + Loan.ToString() + "\",\"Forthemonth\":\"" + monthlypayments.ToString() + "\",\"Total\":\"" + Total.ToString() + "\",\"Interest\":\"" + Interest.ToString() + "\",\"Shoufu\":\"" + Shoufu.ToString() + "\",\"months\":\"" + countYears * 12 +"(月)"+ "\"}");
  71. break;
  72. case "debj"://等额本金
  73. purchase = Math.Round(unitPrice * acreage,2);
  74. Loan =Math.Round(purchase * mortgage,2);
  75. string monthsPay = string.Empty;
  76. for (int i = 0; i < countYears * 12; i++)
  77. {
  78. monthlypayments =Loan / (countYears * 12) + (Loan - Loan / (countYears * 12) * i) * newlilv;
  79. monthsPay +="第"+ (i + 1) + "个月," + Math.Round(monthlypayments,2) + "(元)\\r\\n";//月均金额
  80. Total =monthlypayments + Total;//还款总额
  81. }
  82. Interest =Math.Round(Total - Loan,2);
  83. Shoufu = Math.Round(purchase - Loan,2);
  84. json.Append("{\"purchase\":\"" + purchase.ToString() + "\",\"Loan\":\"" + Loan.ToString() + "\",\"Forthemonth\":\"" + monthsPay.ToString() + "\",\"Total\":\"" + Math.Round(Total,2) + "\",\"Interest\":\"" + Interest.ToString() + "\",\"Shoufu\":\"" + Shoufu.ToString() + "\",\"months\":\"" + countYears * 12 + "(月)" + "\"}");
  85. break;
  86. }
  87. return json.ToString();
  88. }
  89.  
  90. /// <summary>
  91. /// 商业贷款-根据贷款总额计算
  92. /// </summary>
  93. /// <param name="countYears">贷款总额</param>
  94. /// <param name="countYears">按揭年数</param>
  95. /// <param name="lilv">年利率</param>
  96. /// <param name="paymentType">还款方式</param>
  97. /// <returns></returns>
  98. private string returnResult(double loanceiling, int countYears, double lilv, string paymentType)
  99. {
  100. StringBuilder json = new StringBuilder();
  101. double newlilv = lilv / 100 / 12;//月利率
  102. double Loan = loanceiling;//贷款总额
  103. double monthlypayments = 0;//平均月供
  104. double Total = 0;//还款总额
  105. double Interest = 0;//总利息
  106. switch (paymentType.Trim())
  107. {
  108. case "debx"://等额本息
  109. monthlypayments = Math.Round((Loan * newlilv * Math.Pow(1 + newlilv, countYears * 12)) / (Math.Pow(1 + newlilv, countYears * 12) - 1), 2);
  110.  
  111. Total = Math.Round(monthlypayments * countYears * 12, 2);
  112. Interest = Math.Round(Total - Loan, 2);
  113. json.Append("{\"purchase\":\"略\",\"Loan\":\"" + Loan.ToString() + "\",\"Forthemonth\":\"" + monthlypayments.ToString() + "\",\"Total\":\"" + Total.ToString() + "\",\"Interest\":\"" + Interest.ToString() + "\",\"Shoufu\":\"0\",\"months\":\"" + countYears * 12 + "(月)"+"\"}");
  114. break;
  115. case "debj"://等额本金
  116. string monthsPay = string.Empty;
  117. for (int i = 0; i < countYears * 12; i++)
  118. {
  119. monthlypayments =Loan / (countYears * 12) + (Loan - Loan / (countYears * 12) * i) * newlilv;
  120. monthsPay +="第"+ (i + 1) + "个月," + Math.Round(monthlypayments,2) + "(元)\\r\\n";//月均金额
  121. Total =monthlypayments + Total;//还款总额
  122. }
  123. Interest = Math.Round(Total - Loan, 2);
  124. json.Append("{\"purchase\":\"略\",\"Loan\":\"" + Math.Round(Loan,2) + "\",\"Forthemonth\":\"" + monthsPay.ToString() + "\",\"Total\":\"" + Math.Round(Total, 2) + "\",\"Interest\":\"" + Interest.ToString() + "\",\"Shoufu\":\"0\",\"months\":\"" + countYears * 12 + "(月)" + "\"}");
  125. break;
  126. }
  127. return json.ToString();
  128. }
  129.  
  130. /// <summary>
  131. /// 组合型贷款
  132. /// </summary>
  133. /// <param name="syx_loanceiling">商业贷款额</param>
  134. /// <param name="sy_lilvValues">商业贷款利率(年利率)</param>
  135. /// <param name="gjj_loanceiling">公积金贷款额</param>
  136. /// <param name="gjj_lilvValues">公积金贷款额利率(年利率)</param>
  137. /// <param name="countYears">贷款期限</param>
  138. /// <param name="paymentType">还款方式</param>
  139. /// <returns></returns>
  140. private string returnResult(double syx_loanceiling, double sy_lilvValues, double gjj_loanceiling,double gjj_lilvValues, int countYears,string paymentType)
  141. {
  142. StringBuilder json = new StringBuilder();
  143. double sy_newlilv = sy_lilvValues / 100 / 12;//月利率
  144. double sy_Loan = syx_loanceiling;//贷款总额
  145. double sy_monthlypayments = 0;//平均月供
  146. double sy_Total = 0;//商业还款总额
  147. double sy_Interest = 0;//商业贷款利息
  148.  
  149. double gjj_newlilv = gjj_lilvValues / 100 / 12;//月利率
  150. double gjj_Loan = gjj_loanceiling;//贷款总额
  151. double gjj_monthlypayments = 0;//平均月供
  152. double gjj_Total = 0;//公积金还款总额
  153. double gjj_Interest = 0;//公积金贷款利息
  154.  
  155. switch (paymentType.Trim())
  156. {
  157. case "debx"://等额本息
  158. //商业贷款
  159. sy_monthlypayments = Math.Round((sy_Loan * sy_newlilv * Math.Pow(1 + sy_newlilv, countYears * 12)) / (Math.Pow(1 + sy_newlilv, countYears * 12) - 1), 2);
  160. sy_Total = Math.Round(sy_monthlypayments * countYears * 12, 2);
  161. sy_Interest = Math.Round(sy_Total - sy_Loan, 2);
  162.  
  163. //公积金贷款
  164. gjj_monthlypayments = Math.Round((gjj_Loan * gjj_newlilv * Math.Pow(1 + gjj_newlilv, countYears * 12)) / (Math.Pow(1 + gjj_newlilv, countYears * 12) - 1), 2);
  165. gjj_Total = Math.Round(gjj_monthlypayments * countYears * 12, 2);
  166. gjj_Interest = Math.Round(gjj_Total - gjj_Loan, 2);
  167.  
  168. double monthlypayments = sy_monthlypayments + gjj_monthlypayments;
  169. double Total = sy_Total + gjj_Total;
  170. double Interest = sy_Interest + gjj_Interest;
  171. double Loan=Math.Round( sy_Loan + gjj_Loan,2);
  172. json.Append("{\"purchase\":\"略\",\"Loan\":\"" + Loan.ToString() + "\",\"Forthemonth\":\"" + monthlypayments.ToString() + "\",\"Total\":\"" + Total.ToString() + "\",\"Interest\":\"" + Interest.ToString() + "\",\"Shoufu\":\"0\",\"months\":\"" + countYears * 12 + "(月)" + "\"}");
  173. break;
  174. case "debj"://等额本金
  175. string monthsPay = string.Empty;
  176. double newmonthlypayments;;
  177. double newTotal=0;
  178. double newInterest;
  179. double newLoan;
  180. for (int i = 0; i < countYears * 12; i++)
  181. {
  182. sy_monthlypayments = sy_Loan / (countYears * 12) + (sy_Loan - sy_Loan / (countYears * 12) * i) * sy_newlilv;
  183. gjj_monthlypayments =gjj_Loan / (countYears * 12) + (gjj_Loan - gjj_Loan / (countYears * 12) * i) * gjj_newlilv;
  184.  
  185. newmonthlypayments = sy_monthlypayments + gjj_monthlypayments;
  186.  
  187. monthsPay +="第"+ (i + 1) + "个月," + Math.Round(newmonthlypayments) + "(元)\\r\\n";//月均金额
  188.  
  189. sy_Total = sy_monthlypayments + sy_Total;
  190.  
  191. gjj_Total = gjj_monthlypayments + gjj_Total;
  192.  
  193. newTotal = gjj_Total + sy_Total;//还款总额
  194. }
  195. sy_Interest =sy_Total - sy_Loan;
  196.  
  197. gjj_Interest =gjj_Total - gjj_Loan;
  198.  
  199. newInterest = gjj_Interest + sy_Interest;
  200.  
  201. newLoan = sy_Loan + gjj_Loan;
  202.  
  203. json.Append("{\"purchase\":\"略\",\"Loan\":\"" + Math.Round(newLoan, 2) + "\",\"Forthemonth\":\"" + monthsPay.ToString() + "\",\"Total\":\"" + Math.Round(newTotal,2) + "\",\"Interest\":\"" + Math.Round(newInterest, 2) + "\",\"Shoufu\":\"0\",\"months\":\"" + countYears * 12 + "(月)" + "\"}");
  204. break;
  205. }
  206. return json.ToString();
  207. }

c#实现房贷计算的方法源码的更多相关文章

  1. invalidate和requestLayout方法源码分析

    invalidate方法源码分析 在之前分析View的绘制流程中,最后都有调用一个叫invalidate的方法,这个方法是啥玩意?我们来看一下View类中invalidate系列方法的源码(ViewG ...

  2. v8--sort 方法 源码 (1) 插入排序法

    v8--sort方法源码中对于长度较短的数组使用的是插入排序法. 部分源码: function InsertionSort(a, from, to) { for (var i = from + 1; ...

  3. 从原子类和Unsafe来理解Java内存模型,AtomicInteger的incrementAndGet方法源码介绍,valueOffset偏移量的理解

    众所周知,i++分为三步: 1. 读取i的值 2. 计算i+1 3. 将计算出i+1赋给i 可以使用锁来保持操作的原子性和变量可见性,用volatile保持值的可见性和操作顺序性: 从一个小例子引发的 ...

  4. HashMap实现原理一步一步分析(1-put方法源码整体过程)

    各位同学大家好, 今天给大家分享一下HashMap内部的实现原理, 这一块也是在面试过程当中基础部分被问得比较多的一部分. 想要搞清楚HashMap内部的实现原理,我们需要先对一些基本的概念有一些了解 ...

  5. js-reduce方法源码

    // 数组中的reduce方法源码复写 //先说明一下reduce原理:总的一句,reduce方法主要是把数组遍历, //然后把数组的每个元素传入回调函数中,回调函数怎么处理,就会的到什么样的效果 A ...

  6. Java split方法源码分析

    Java split方法源码分析 public String[] split(CharSequence input [, int limit]) { int index = 0; // 指针 bool ...

  7. erlang下lists模块sort(排序)方法源码解析(二)

    上接erlang下lists模块sort(排序)方法源码解析(一),到目前为止,list列表已经被分割成N个列表,而且每个列表的元素是有序的(从大到小) 下面我们重点来看看mergel和rmergel ...

  8. erlang下lists模块sort(排序)方法源码解析(一)

    排序算法一直是各种语言最简单也是最复杂的算法,例如十大经典排序算法(动图演示)里面讲的那样 第一次看lists的sort方法的时候,蒙了,几百行的代码,我心想要这么复杂么(因为C语言的冒泡排序我记得不 ...

  9. getOrCreateEnvironment()方法源码探究

    该方法目的是创建一个环境对象,并且根据环境类型,自动判断是创建web环境对象,还是标准非web环境对象. 首先该方法源于prepareEnvironment准备环境: 然后进入该方法源码: 可以发现: ...

随机推荐

  1. oracle分组后取每组第一条数据

    数据格式: 分组取第一条的效果: sql语句: SELECT * FROM ( ;

  2. R语言画图,根据正负值画不同颜色,并且画水平线或者垂直线

    col=ifelse(x<0, "blue", "red") #如果x值为负值,用蓝色表示,反之,用红色表示 abline(v=0,col="g ...

  3. libcurl 函数curl_easy_perform在release下崩溃的问题

    今天遇到一个很奇怪的问题: 工程中用到了libcurl, debug可以正常运行,release每次都崩溃,断到curl_easy_perform这一行.堆栈中也得不到有用信息,于是GOOGLE一番, ...

  4. HTML5离线篇收藏--- cache manifest

    自从翻译了<解读 HTML5:建议.技巧和技术>,就一直没有时间去看 HTML5 相关的东西.上周一次偶然的工作间隙折腾了下 Cache Manifest .当时直接拿博客当测试环境,虽然 ...

  5. poj1087 A Plug for UNIX(网络流最大流)

    http://poj.org/problem?id=1087 好久没遇见过这么坑的题了这个题真是挫的够可以的.题目大意:你作为某高管去住宿了,然后宾馆里有几种插座,分别有其对应型号,你携带了几种用电器 ...

  6. Java(类与对象)

    1>对象判等 请输入并运行以下代码,得到什么结果? public class Test { public static void main(String[] args) { // TODO Au ...

  7. three.js 根据png生成heightmap

    Three.js: render real world terrain from heightmap using open data By jos.dirksen on Tue, 07/17/2012 ...

  8. 在CMMI推广过程中EPG常犯的错误(转)

    本文转自: http://developer.51cto.com/art/200807/86953.htm 仅用于个人收藏,学习.如有转载,请联系原作者. ---------------------- ...

  9. java socket 网络编程常见异常

    1.java.net.SocketTimeoutException 这个异常比较常见,socket超时.一般有2个地方会抛出这个,一个是connect的时候,这个超时参数由connect(Socket ...

  10. jsp文件引入js文件的方式(项目部署于web容器中)

    在页面中引入javascript文件的方式是多种多样的,本文介绍两种. 通过<script>标签插入js文件 通过这种方式引入的js,写对js文件和jsp文件的路径很重要.下面给出一个项目 ...