Math.ceil()是常见编程语言中的常用代码,用于向上取整数计算,返回的是大于或等于函数参数的数值。
Math.ceil(x)参数:X(必需)
例如:
Math.ceil(12.3)//返回13.0
Math.ceil(12.5)//返回13.0
Math.ceil(12.0)// 返回12.0
Math.ceil(10.000000001F)//返回10.0
Math.ceil()是常见编程语言中的常用代码,用于向上取整数计算,返回的是大于或等于函数参数的数值。
Math.ceil(x)参数:X(必需)
例如:
Math.ceil(12.3)//返回13.0
Math.ceil(12.5)//返回13.0
Math.ceil(12.0)// 返回12.0
Math.ceil(10.000000001F)//返回10.0