表达式eval(’’’import(’math’).sqrt(9)’’’)的值为()。
第1题:
A.round
B.random
C.pow
D.sqrt
第2题:
有以下计算公式若程序前面已在命令行中包含math.h文件,不能够正确计算上述公式的程序段是
A.if(x>=0 y=sqrt(x); else y=sqrt(-x);
B.y=sqrt(x) if(x<0)y=sqrt(-x);
C.if(x>=0) y=sqrt(x); if(x<0)y=sqrt(-x);
D.y=sqrt(x>=0?x:-x);
第3题:
下面程序段的输出结果是( )。 publicclassTest{ publicstaticvoidmain(Stringargs[]){ intx,y; x=(int)Math.sqrt(5)/2+(int)Math.random()*5/2; Y=(int)Math.sqrt(3)/2+(int)Math.random()*3/2; if(x>y) System.out.println9"x>y"); elseif(x==y) System.out.println("x=y"); else System.out.println("x<y"); } }
A.x>y
B.x=y
C.x<y
D.编译错误
第4题:
编一个程序,输入a,b,c的值,求出一元二次方程a*x*x+b*x+c=0的二个实数根。计算二个实数根必须使用Math类中的Sqrt()方法,计算指定数的开方。计算二个实数根,可以用公式(-b+Math.Sqrt(b*b-4*a*c))/(2*a)和(-b-Math.Sqrt(b*b-4*a*c))/(2*a)
第5题:
关于引入模块的方式,错误的是()。
第6题:
表达式eval(’’’import(’math’).sqrt(3**2+4**2)’’’)的值为()。
第7题:
假设math标准库已导入,那么表达式eval(’math.sqrt(4)’)的值为()。
第8题:
数学模块中,math.sqrt(4)的值是()。
第9题:
document.write(math.sqrt(81))
document.write(Math.sqrt(81))
document.write(Math.sqrt”81”)
document.write(Math.sqrt”81”)
第10题:
第11题:
第12题:
第13题:
有以下计算公式:若程序前面已在命令行中包含math.h文件,不能够正确计算上述公式的程序段是( )。
A.if(x>=0) y=sqrt(x); else y=sqrt(-x);
B.y=sqrt(x); if(x<0) y=sqrt(-x);
C.if(x>=0) y=sqrt(x); if(x<0) =sqdrt(-x);
D.y=sqrt(x>=0?x:-x);
第14题:
有以下计算公式若程序前面已在命令中包含math.h文件,不能够正确 计算上述公式的程序段是( )。
A.if(x>=0)y=sqrt(x); else y=sqrt(-x);
B.y=sqrt(x) if(x<0)y=sqrt(0x);
C.if(x>=O)y=sqrt(x); If(x<O)y=sqrt(0x);
D.y=sqrt(x>=0? x:0x);
第15题:
下面程序段的输出结果是______。 public class Test{ public static void main(String args[ ]){ int x,y; x=(int)Math.sqrt(5/2)+(int)Math.random( )*5/2; y=(int)Math.sqrt(3/2)+(int)Math.random( )*3/2; if(x>y) System.out.println("x>y"); else if(x==y) System.out.println("x=y"); else System.out.println("x<y"); } }
A.x>y
B.x=y
C.x<y
D.编译错误
第16题:
表达式eval(’’’import(’math’).sqrt(9)’’’)的值为()。
第17题:
表达式eval(’3+5’)的值为()。
第18题:
如果只需要math模块中的sin( )函数,建议使用from math import sin来导入,而不要使用import math导入整个模块。
第19题:
表达式eval(’[1,2,3]’)的值为()。
第20题:
当需要在Flash中计算圆形面积的时候,假设变量d的值为圆的直径,下列选项中正确的计算表达式为()。
第21题:
对
错
第22题:
第23题:
第24题:
import math
from fib import fibonacci
from math import *
from * importfib