当前位置: 代码迷 >> 综合 >> My理解的Math.ceil()方法
  详细解决方案

My理解的Math.ceil()方法

热度:78   发布时间:2024-01-10 11:33:13.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

  相关解决方案