以下Math的方法运用中,哪个方法返回的值是9.0。( )
A: Math.floor(9.6);
B: Math.sqrt(100);
C: Math.max(9.0 , 10.0);
D: Math.round(9.6);
A: Math.floor(9.6);
B: Math.sqrt(100);
C: Math.max(9.0 , 10.0);
D: Math.round(9.6);
举一反三
- 引用math模块中sqrt函数的导入语句,下列错误的语句是:( ) A: import math B: from math import sqrt C: from sqrt import math D: from math import *
- 下列语句错误的是_____。? import math|from math import sqrt|import sqrt|from math import *
- 下列语句错误的是_____。 A: from math import sqrt B: import math C: from math import * D: import sqrt
- Math对象的哪个方法可以返回小于等于参数的整数?() A: round() B: pow() C: floor() D: ceil()
- 以下哪个不是正确的引入math库或其函数的语句() A: import math B: from math import * C: from math import math D: import math as ma