问答详情
源自:3-8 使用 Math 类操作数据

我怀疑老师有个地方是不是写错了?

1.ceil是最大返回最大参数的最小整数
2.floor()是返回最大值的最小整数;
可是我查了一下api,上面写的是这句话
Returns the largest (closest to positive infinity) double value 
that is less than or equal to the argument and is equal to a mathematical 
integer. Special cases:
If the argument value is already equal to a mathematical integer, then the 
result is the same as the argument. 
写的是返回最大的值是的整数


提问者:明天你好我去 2017-05-05 17:17

个回答

  • weixin_慕九州8061769
    2022-05-07 09:04:55

    floor :地板   向下取整

    ceil:天花板 向上取整

    这样理解是不是好很多

    搜索

    复制

  • 我说红豆你说哟
    2017-05-23 15:51:30

    理解了floor与ceil两个单词的意思就比较好了解这两个方法了,floor即向下,ceil指天花板,即向上。12.81向下就是12.0,向上就是13.0

  • 花开相依人自流
    2017-05-05 17:25:12

    没有错啊