填空题Java语言中的方法Math.sqrt(x)是求x的()的值。
填空题
Java语言中的方法Math.sqrt(x)是求x的()的值。
参考解析
解析:
暂无解析
相关考题:
在Java语言中,小明在他的类SquareRoot中定义了方法method_A,其中包含语句:doublemy_result=Math.sqrt(1000);他需要导入()。 A.Java.lang.*B.Java.Math.*C.Java.util.Math.*;D.以上皆非
下面程序段的输出结果是( )。 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.编译错误
执行x = InputBox("请输入半径",0,"求面积") ,在输入框中输入3后回车,则下列叙述正确的是( )。A、 x的值是数值3B、 x的值是字符"3"C、 0是默认值D、 对话框标题是"求面积"
若有如下程序: SET TALK OFF INPUT TO X FOR i=1 TO 3 INPUT TO Y IF Y>X X=Y ENDIF ENDFOR ?X RETURN 本程序的功能是( )。A.求3个数中的最大值B.求4个数中的最大值C.求3个数中的最小值D.求4个数中的最小值
下面程序段的输出结果是( )。 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.编译错误
在Java语 言中,为了使用getImage的方法,你需要导入的类是()。 A、Java.awt.ImageB、Java.applet.Applet.ImageC、Java.awt.GraphicsD、Java.awt.Graphics.Image
在JAVA语言中,以下正确的函数定义形式是()。A、double run(x,y)B、double run(int x;int y)C、double run(int x,int y)D、double run(int x,y)
单选题在Java语言中,小明在他的类SquareRoot中定义了方法method_A,其中包含语句:doublemy_result=Math.sqrt(1000); 他需要导入()。AJava.lang.*BJava.Math.*CJava.util.Math.*;D以上皆非
单选题在Java语 言中,为了使用getImage的方法,你需要导入的类是()。AJava.awt.ImageBJava.applet.Applet.ImageCJava.awt.GraphicsDJava.awt.Graphics.Image
单选题在Java语言中,小明在他的类SquareRoot中定义了方法method_A, 其中包含语句: double my_result = Math.sqrt(1000); 他需要导入()。AJava.lang.*BJava.Math.*CJava.util.Math.*;D以上皆非