Python 表达式math.sqrt(4)*math.sqrt(9)的值为A.6.0B.36.0C.13.0D.6
Python 表达式math.sqrt(4)*math.sqrt(9)的值为
A.6.0
B.36.0
C.13.0
D.6
参考答案和解析
6.0
相关考题:
下面程序段的输出结果是( )。 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>yB.x=yC.x<yD.编译错误
下面程序段的输出结果是( )。 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(xv) System.OUt.println("xy"); elseif(x= =y) System.out.println("x=Y"); else System.out.println("xy"): } }A.xyB.x=YC.xyD.编译错误
System.out.println(Math.sqrt(-4D));Whatistheresult?() A.–2B.NaNC.InfinityD.Compilationfails.E.Anexceptionisthrownatruntime.
设有如下程序: public class Sun { public static void main (String args[ ]) { int x,y; x= (int) Math.sqrt (2) /2+ (int) Math.random ()*2/2; y= (int) Math.sqrt (3) /3+ (int) Math.random ()*3/3; 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>yB.x=yC.x<yD.以上都不对
下面程序段的输出结果是( )。 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>yB.x=yC.x<yD.编译错误
下面程序段的输出结果是______。 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>yB.x=yC.x<yD.编译错误
System.out.println(Math.sqrt(-4D)); What is the result?() A、 –2B、 NaNC、 InfinityD、 Compilation fails.E、 An exception is thrown at runtime.
单选题JavaScript中,显示81的平方根的正确方法是?()Adocument.write(math.sqrt(81))Bdocument.write(Math.sqrt(81))Cdocument.write(Math.sqrt”81”)Ddocument.write(Math.sqrt”81”)
单选题System.out.println(Math.sqrt(-4D)); What is the result?()A –2B NaNC InfinityD Compilation fails.E An exception is thrown at runtime.
单选题数学模块中,math.sqrt(4)的值是()。A0B2C2.0D4.0