Math.round
数値の四捨五入
構文
Math.round(x)
引数
x=数値例文
<html> <head> <title>Math.round</title> </head> <body> <!--数値の四捨五入のサンプル--> <script type="text/javascript"> document.write('0.60の四捨五入値は'+Math.round(0.60)+"です<br>"); document.write('0.50の四捨五入値は'+Math.round(0.50)+"です<br>"); document.write('0.49の四捨五入値は'+Math.round(0.49)+"です<br>"); document.write('-4.40の四捨五入値は'+Math.round(-4.40)+"です<br>"); document.write('-4.60の四捨五入値は'+Math.round(-4.60)); </script> </body> </html>
関連記事
- Math.tan
- Math.atan2
- Math.sqrt
- Math.sin
- Math.random
- Math.pow
- Math.min
- Math.max
- Math.log
- Math.floor
- Math.exp
- Math.cos
- Math.ceil
- Math.atan
- Math.asin
- Math.acos
- Math.abs
- Math.SQRT2
- Math.SQRT1_2
- Math.PI
- Math.LOG2E
- Math.LOG10E
- Math.LN2
- Math.LN10
- Math.E
スポンサーリンク