以下哪个方法的调用结果是整数类型结果3
A: Math.ceil(3.1)
B: Math.floor(2.7)
C: Math.abs(3.1)
D: Math.round(2.7)
A: Math.ceil(3.1)
B: Math.floor(2.7)
C: Math.abs(3.1)
D: Math.round(2.7)
举一反三
- 下面那个语句可返回x的整数部分 A: import math math.ceil(x) B: from math import ceil ceil(x) C: import math math.trunc(x) D: import math math.fabs(x)
- Math对象的哪个方法可以返回小于等于参数的整数?() A: round() B: pow() C: floor() D: ceil()
- 使用Math类的方法中,-4.4通过哪个方法运算后,结果为-5.0?( ) A: round B: min C: floor D: ceil
- Math对象有3个取整函数分别是 floor、round、ceil。
- 以下Math类的方法中,-4.4通过哪个方法运算后,结果为-5.0? A: floor() B: ound() C: min() D: ceil()