JavaScript Math.floor方法(对数值向下取整)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript Math.floor方法(对数值向下取整)相关的知识,希望对你有一定的参考价值。
参考技术A javascriptMath.floor
方法
Math.floor
方法用于对数值向下取整,即得到小于或等于该数值的最大整数。语法如下:
Math.floor(x)
参数说明:
参数
说明
x
必需。必须是一个数值。
提示:该方法与
Math.ceil
方法正好相反。
Math.floor
方法实例
<script
language="JavaScript">
document.write(
Math.floor(0.35)
+
"<br
/>"
);
document.write(
Math.floor(10)
+
"<br
/>"
);
document.write(
Math.floor(-10)
+
"<br
/>"
);
document.write(
Math.floor(-10.1)
);
</script>
运行该例子,输出:
0
10
-10
-11
Math.floor
可能不准的问题
如果参数
x
是一个涉及浮点数的表达式,那么由于计算机的固有原理,可能导致表达式应用
Math.floor
方法后结果不准确(不符合常理),具体参考《Math.ceil
方法》一文中的相关描述。
Javascript Math ceil()floor()round()三个函数的区别
下面来介绍将小数值舍入为整数的几个方法:Math.ceil()、Math.floor()和Math.round()。 这三个方法分别遵循下列舍入规则:
◎Math.ceil()执行向上舍入,即它总是将数值向上舍入为最接近的整数;
◎Math.floor()执行向下舍入,即它总是将数值向下舍入为最接近的整数;
◎Math.round()执行标准舍入,即它总是将数值四舍五入为最接近的整数(这也是我们在数学课上学到的舍入规则)。
下面是使用这些方法的示例:
1 2 3 4 5 6 7 8 9 |
alert(Math.ceil(25.9)); //26 alert(Math.ceil(25.5)); //26 alert(Math.ceil(25.1)); //26 alert(Math.round(25.9)); //26 alert(Math.round(25.5)); //26 alert(Math.round(25.1)); //25 alert(Math.floor(25.9)); //25 alert(Math.floor(25.5)); //25 alert(Math.floor(25.1)); //25 |
南昌网络公司技术人员总结:对于所有介于25和26(不包括26)之间的数值,Math.ceil()始终返回26,因为它执行的是向上舍入。Math.round()方法只在数值大于等于25.5时返回26;否则返回25。最后,Math.floor()对所有介于25和26(不包括26)之间的数值都返回25。
以下是一些补充:
ceil():将小数部分一律向整数部分进位。
如:
Math.ceil(12.2)//返回13
Math.ceil(12.7)//返回13
floor():一律舍去,仅保留整数。
如:
Math.floor(12.2)// 返回12
Math.floor(12.7)//返回12
Math.floor(12.0)//返回12
round():进行四舍五入
如:
Math.round(12.2)// 返回12
Math.round(12.7)//返回13
Math.round(12.0)//返回12
以上是关于JavaScript Math.floor方法(对数值向下取整)的主要内容,如果未能解决你的问题,请参考以下文章
Javascript Math ceil()floor()round()三个函数的区别