Math对象有3个取整函数分别是 floor、round、ceil。
Math对象有3个取整函数分别是 floor、round、ceil。
输入一个表示半径的浮点数,计算圆的面积的程序正确的有:[br][/br] (圆周率取使用math库中的pi值,结果保留2位小数) A: import math <br> radius = float(input()) area = math.pi * radius ** 2 print(round(area, 2)) B: import math <br> radius = float(input()) area = pi * radius ** 2 print(round(area, 2)) C: from math import pi <br> radius = float(input()) area = math.pi * radius ** 2 print(round(area, 2)) D: from math import pi <br> radius = float(input()) area = pi * radius ** 2 print(round(area, 2))
输入一个表示半径的浮点数,计算圆的面积的程序正确的有:[br][/br] (圆周率取使用math库中的pi值,结果保留2位小数) A: import math <br> radius = float(input()) area = math.pi * radius ** 2 print(round(area, 2)) B: import math <br> radius = float(input()) area = pi * radius ** 2 print(round(area, 2)) C: from math import pi <br> radius = float(input()) area = math.pi * radius ** 2 print(round(area, 2)) D: from math import pi <br> radius = float(input()) area = pi * radius ** 2 print(round(area, 2))
以下哪几个是math模块中的函数? A: round B: log C: degrees D: pi
以下哪几个是math模块中的函数? A: round B: log C: degrees D: pi
以下哪几个是math模块中的函数? A: round B: log C: degrees D: pi
以下哪几个是math模块中的函数? A: round B: log C: degrees D: pi
以下哪几个是math模块中的函数? A: round B: log C: degrees D: pi
以下哪几个是math模块中的函数? A: round B: log C: degrees D: pi
下列属于math中的数学函数的是( )。 A: time( ) B: round( ) C: sqrt( ) D: random( )
下列属于math中的数学函数的是( )。 A: time( ) B: round( ) C: sqrt( ) D: random( )
以下哪些函数是Math对象的?( ) A: random() B: max(3,10) C: round(1.5) D: rnd(7.25)
以下哪些函数是Math对象的?( ) A: random() B: max(3,10) C: round(1.5) D: rnd(7.25)
以下Math的方法运用中,哪个方法返回的值是9.0。( ) A: Math.floor(9.6); B: Math.sqrt(100); C: Math.max(9.0 , 10.0); D: Math.round(9.6);
以下Math的方法运用中,哪个方法返回的值是9.0。( ) A: Math.floor(9.6); B: Math.sqrt(100); C: Math.max(9.0 , 10.0); D: Math.round(9.6);
Math对象的( )方法是返回 0 ~ 1 之间的随机数? A: random() B: round() C: sin() D: sqrt()
Math对象的( )方法是返回 0 ~ 1 之间的随机数? A: random() B: round() C: sin() D: sqrt()
13.下列属于math库中的数学函数的是( )。 A: sqrt() B: round() C: time() D: random()
13.下列属于math库中的数学函数的是( )。 A: sqrt() B: round() C: time() D: random()