編寫兩種方法,可以輸出數據 num 精確到小數點後第 n 位,具體內容如下
1. 借助於 Math.pow(10,n);
2. 借助於 ..toFixed(n) (JS 1.5(IE5.5+,NS6+以上版本支持)。
測試 pi=3.14159265 的輸出結果:
精確到小數點後 n 位, 借助於 Math.pow(10,n):
3.1
3.14
3.142
3.1416
精確到小數點後 n 位, 借助於 ..toFixed(n):
3.1
3.14
3.142
3.1416
<html> <head> <title>四捨五入</title> <meta charset="utf-8"> </head> <body> <script> function round_1(num,n){//返回數字 num, 精確到小數點後 n 位 var number= Math.round(num*Math.pow(10,n)); return number/Math.pow(10,n); } function round_2(num,n){//返回數字 num, 精確到小數點後 n 位 return num.toFixed(n); //JS 1.5(IE5.5+,NS6+以上版本支持) } var pi= 3.14159265; document.write("精確到小數點後 n 位, 借助於 Math.pow(10,n):<br>"); for (var i=1; i<5; i++) document.write(round_1(pi,i) + "<br>"); document.write("精確到小數點後 n 位, 借助於 ..toFixed(n):<br>"); for (var i=1; i<5; i++) document.write(round_2(pi,i) + "<br>"); </script> </body> </html>
以上就是本文的全部內容,希望對大家學習javas程序設計有所幫助。