JavaScript中的Math.ceil()、Math.round()、Math.floor()

1. Math.ceil():向上取整(指取大于该浮点数的最小整数)

2. Math.round():四舍五入取整(注意:当该浮点数距离两端整数一样时,取较大的那个整数,如Math.round(-1.5)=-1)

3. Math.floor():向下取整(指取小于该浮点数的最大整数)

时间: 2024-11-05 12:26:27

JavaScript中的Math.ceil()、Math.round()、Math.floor()的相关文章

python中的math.ceil(x)和math.floor(x)

一 math.ceil(x) import math 1.当x为正数时,只要x的小数部分>0就+1 x=5.01 print(math.ceil(x)) #6 x=5.9 print(maht.ceil(x)) #6 2.当x为负数时,舍去小数部分 x=-5.9 print(math.ceil(x)) #-5 x=-5.01 print(math.ceil(x)) #-5 二.math.floor(x) 1.当x为正数时,舍去小数部分 x=5.9 print(math.floor(x)) #5

java中常用到的math方法(Math.PI、Math.random()、Math.abs(double)、Math.floor(double)、Math.ceil(double)、Math.round(double))

public class MathDemo { public static void main(String args[]){ /** * abs求绝对值 */ System.out.println(Math.abs(-10.4));    //10.4 System.out.println(Math.abs(10.1));     //10.1 /** * ceil天花板的意思,就是返回大的值,注意一些特殊值 */ System.out.println(Math.ceil(-10.1));  

区别js里面常用的random,ceil,round,floor

1.Math.random():返回 0 ~ 1 之间的随机数. 2.Math.round():四舍五入取整. 例如: Math.round(2.1)2Math.round(2.7)3 3.Math.ceil():返回值:返回大于或等于x,并且与之最接近的整数.注:如果x是正数,则把小数“入”:如果x是负数,则把小数“舍”. 例如: Math.ceil(-2.1);-2Math.ceil(-2.7);-2 Math.ceil(2.7);3 Math.ceil(2.1);3 4.Math.floo

Math ceil() Math.floor(),Math.round()用法

Math.ceil() Math.ceil(x) 参数: x:一个数值. 返回值:返回大于或等于x,并且与之最接近的整数. 注:如果x是正数,则把小数“入”:如果x是负数,则把小数“舍”. 例: <script type="text/javascript"> document.write( Math.ceil(1.2)+", "+Math.ceil(1.8)+", "+Math.ceil(-1.2)+", "+Ma

Math.round(),Math.ceil(),Math.floor()的区别

1.Math.round():根据“round”的字面意思“附近.周围”,类似四舍五入,但负数不一致 小数点后第一位<5 正数:Math.round(11.46)=11 负数:Math.round(-11.46)=-11 小数点后第一位>5 正数:Math.round(11.68)=12 负数:Math.round(-11.68)=-12 小数点后第一位=5 正数:Math.round(11.5)=12 负数:Math.round(-11.5)=-11 总结:(小数点后第一位)大于五全部加,等

JavaScript中Math--random()/floor()/round()/ceil()

Math.random():返回0-1之间的任意数,不包括0和1: Math.floor(num):返回小于等于num的整数,相当于四舍五入的四舍,不五入:例子:Math.floor(1.0);Math.floor(1.5);Math.floor(1.9);都返回1: Math.round(num):num进行四舍五入:例子:Math.round(1.0);Math.round(1.4);返回1;/Math.round(1.5);Math.round(1.9);返回2; Math.ceil(nu

在JavaScript中判断整型的N种方法

整数类型(Integer)在JavaScript经常会导致一些奇怪的问题.在ECMAScript的规范中,他们只存在于概念中: 所有的数字都是浮点数,并且整数只是没有一组没有小数的数字. 在这篇博客中,我会解释如何去检查某个值是否为整型. ECMAScript 5 在ES5中有很多方法你可以使用.有时侯,你可能想用自己的方法:一个isInteger(x)的函数,如果是整型返回true,否则返回false. 让我们看看一些例子. 通过余数检查 你可以使用余数运算(%),将一个数字按1求余,看看余数

javascript中的内置对象总结

内置对象 标准内置对象 Object Object.create Object.prototype.toString Object.prototype.hasOwnProperty Boolean String String.prototype.indexOf String.prototype.replace String.prototype.split Number Number.prototype.toFixed Array Array.prototype.splice Array.prot

javascript中Math ceil(),floor(),round()三个函数的对比

Math.ceil()执行的是向上舍入 Math.floor()执行向下舍入 Math.round()执行标准舍入 一下是一些补充: ceil():将小数部分一律向整数部分进位. 如: Math.ceil(12.2)//返回13 Math.ceil(12.7)//返回13 Math.ceil(12.0)// 返回12 floor():一律舍去,仅保留整数. 如: Math.floor(12.2)// 返回12 Math.floor(12.7)//返回12 Math.floor(12.0)//返回