首页 > 网站 > WEB开发 > 正文

5.7.2.3 舍入方法

2024-04-27 14:08:39
字体:
来源:转载
供稿:网友

5.7.2.3 舍入方法

  下面介绍将小数值舍入为整数的几个方法:Math.ceil()、Math.floor()和Math.round()。这三个方法分别遵循下列舍入规则:

  • Math.ceil()执行向上舍入,即它总是将数值向上舍入为最接近的整数;
  • Math.floor()执行向下舍入,即它总是将数值向下舍入为最接近的整数;
  • Math.round()执行标准舍入,即它总是将数值四舍五入为最接近的整数(这也是我们在数学课上学到的舍入规则)。

  下面是使用这些方法的示例:

alert(Math.ceil(25.9));//26alert(Math.ceil(25.5));//26alert(Math.ceil(25.1));//26alert(Math.round(25.9));//26alert(Math.round(25.5));//26alert(Math.round(25.1));//25alert(Math.floor(25.9));//25alert(Math.floor(25.5));//25alert(Math.floor(25.1));//25

  对于所有介于25到26(不包含26)之间的数值,Math.ceil()始终返回26,因为它执行的是向上舍入。Math.round()方法只在数值大于等于25.5时返回26;否则返回25。最后,Math.floor()对所有介于25和26(不包含26)之间的数值都返回25。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表