以下代码执行结果是( )。 var total=16.5 ; total=Math.round(5.50)+Math.ceil(5.01)+Math.floor(5.99); alert(total);
A: 16.5
B: 33.5
C: 17
D: 18
A: 16.5
B: 33.5
C: 17
D: 18
举一反三
- Math对象有3个取整函数分别是 floor、round、ceil。
- 下面那个语句可返回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类的方法中,-4.4通过哪个方法运算后,结果为-5.0?( ) A: round B: min C: floor D: ceil
- Math对象的哪个方法可以返回小于等于参数的整数?() A: round() B: pow() C: floor() D: ceil()
- 以下Math类的方法中,-4.4通过哪个方法运算后,结果为-5.0? A: floor() B: ound() C: min() D: ceil()