王柏閎第十五週
利率y(rate) | 期數n(nper) | 金流m(pmt) | 終值f(fv) |
參考劉任昌金融市場講義
王柏閎學習HTML+CSS+JavaScript程式碼
<style>
h1{border: 30px outset red;
background-color: green;
color: white;
text-align: center;}
</style>
<script>
function computePV(){
var r = document.getElementById("rate" ).value;
var n = document.getElementById("nper" ).value;
var m = document.getElementById("pmt") .value;
var f = document.getElementById("fv"). value;
pvif =r;
pvif++;
pvif =1/pvif**n;
var pv = (1-pvif)*m/r + f * pvif;
document.getElementById("pv"). innerHTML = pv;
}
</script>
<body>
<table border="1">
<tr><td>利率y(rate)</td><td>期數n( nper)</td><td>金流m(pmt)</td>< td>終值f(fv)</td></tr>
<td><input id="rate" type="number"/></td>
<td><input id="nper" type="number" /></td>
<td><input id="pmt" type="number" /></td>
<td><input id="fv" type="number" /></td></tr>
</table>
<input onclick="computePV()" type="button" value="計算現值" />
<p id="pv"></p>
<h1>王柏閎學習HTML+CSS+ JavaScript程式碼<h1/>
</body>
留言
張貼留言