单选题

给出下列代码片段: if(x>0){System.out.println("first");} else if(x>-3){System.out.println("second");} else{System.out.println("third");} 当x处于( )范围时打印字符串"second"。

A. x>0
B. x>-3
C. -3<x<=0
D. x<=-3

查看答案
该试题由用户647****10提供 查看答案人数:44643 如遇到问题请 联系客服
正确答案
该试题由用户647****10提供 查看答案人数:44644 如遇到问题请联系客服

相关试题

换一换
单选题
给出下列的程序代码片段,下列的哪个选项是不正确的 ① public void create() { ② Vector my; ③ my=new Vector (); ④ }
A.第二行的声明不会为变量my分配内存空间 B.第二行语句创建一个Vector类对象 C.第三行语句创建一个Vector类对象 D.第三行语句为一个Vector类对象分配内存空间
答案
单选题
给出下列代码片段: if(x>0){System.out.println("first");} else if(x>-3){System.out.println("second");} else{System.out.println("third");} 当x处于( )范围时打印字符串"second"。
A.x>0 B.x>-3 C.-3<x<=0 D.x<=-3
答案
单选题
给出下列代码片段:if (x > 0 ) { System.out.println(“Hello.”);}else if (x >-3 ) {System.out.pirntln (“ I am Tom. ”);}else {System.out.println (“How are you?”);}请问将打印字符串“How are you ?”的x的范围是()
A.x >0 B.x > -3 C.x <= -3 D.x <=0 & x >-3
答案
单选题
给出下列代码片段:if (x > 0 ) { System.out.println(“Hello.”);}else if (x >-3 ) {System.out.pirntln (“ I am Tom. ”);}else {System.out.println (“How are you?”);}请问将打印字符串“How are you ?”的x的范围是()
A.x >0 B.x > -3 C.x <= -3 D.x <=0 & x >-3
答案
主观题
给出下列【代码】注释标注的代码的输出结果。 public class E { public static void main(String args[ ]) { byte d[]="abc我们喜欢篮球".getBytes(); String s=new String(d,0,7); System.out.println(s); //【代码】 } }
答案
主观题
中国大学MOOC: 有以下代码片段:int m[] = {0, 1, 2, 3, 4, 5, 6 };以下哪项可以给出数组的单元个数?
答案
单选题
阅读下列代码片段
A.B ) Inneritance B.C ) implements C.D ) extends
答案
单选题
给出下列代码段: int i=3,j; outer:while(i>0) {j=3;inner:while(j>0){ if(j<=2) break outer; System. out. Println (j+ "and"+i); j--;}i--; } 下列选项中哪个会被输出到屏幕 ( )
A.3 and 3 B.3 and 2 C.3 and 1 D.3 and 0
答案
单选题
给出下列的代码,则以下哪个选项返回trueString s = "hello";String t = "hello";char c[ ] = {""h"",""e"",""l"",""l"",""o""};
A.Sub Pro4 (x As Form) B.Sub Pro4 (y As Control) C.Sub Pro4 (Forml As Form,Labell As Control) D.Sub Pro4 (x As Currency)
答案
主观题
给出下面代码,程序的运行次数是()。 k=10000 while k>1: print() k=k/2
答案
热门试题
给出下列代码,如何使成员变量m被方法fun( )直接访问 class Test{ private int m; public static void fun( ){… }} 给出下列代码,哪行在编译时可能会有错误?① public void modify(){② int i, j, k;③ i = 100;④ while (i > 0 ){⑤ j = i * 2;⑥ System.out.println (" The value of j is " + j );⑦ k = k + 1;⑧ }⑨ } 给出下列的代码,哪行在编译时可能会有错误 ① public void modify(){ ② int i,j,k; ③ i = 100; ④ while(i >0){ ⑤ j = i * 2; ⑥ System.out.println("The value of j is" + j); ⑦ k=k + 1 ⑧ } ⑨ } 关于下列代码片段分析正确的是(???????? )。 ... x=13ifx>0:print(1)请问运行的结果是?() 给出下面代码段 :public class Test1{public static void main(String args[]){int m;switch(m) {case 0:System.out.println("case 0");case 1:System.out.println("case 1");break;case 2:default:System.out.println("def 给出下列代码段:public class ex38{ public static void main (String args [ ] ) { int m; switch(m) { case 0: System.out.println ( "case 0" ); case 1:System.out.println("case 1");break; case 2: default: System.out.print in ("default") } }下列m的______值将引起"default"的输出。 给出下面的代码,则以下()选项返回true。 String s="hello"; String t="hello"; Char c={"h","e","l","l","o"}; 关于下列代码片段的说法中,正确的是() 关于下列代码片段的说法中,正确的是:() 关于下列代码片段的说法中,正确的是?? ? 给出下面程序输出结果() 给出下列代码,则数组初始化中哪项是不正确的 byte[] array1,array2 []; byte array3 [] []; byte [][]array4; 给出下列代码,则数组初始化中哪项是不正确的 byte[ ]array1,array2[ ]; byte array3[ ][ ]; byte[ ][ ]array4; 给出下列代码,则数组初始化中哪项是不正确的? byte[ ] array1,array2[ ]; byte array3[ ][ ]; byte[ ][ ] array4; 给出下列代码,byte【】array1,array2【】;byte【】array3【】【】;byte【】【】array4;则数组初始化中哪项是不正确的() 给出下列【代码】注释标注的代码的输出结果。 import java.lang.Math; public class E { public static void main(String args[]) { int m = (int)Math.sqrt(9); int n = Math.abs(-20); System.out.printf("%d:%d",m,n); //【代码】 } } 给出下面代码段: public class Test{ public static void main(String args[] ) { int m; switch(m) { case 0: System.out.println("case 0"); case 1: System.out.println("case 1"); break; case 2: break; default: System.out.println("default"); } } } 下列m的值能引起输出“default”的是( )。 给出下列【代码】注释标注的代码的输出结果。 class AAA { static int m ; static { m = 888; } } public class E { public static void main(String args[]) { AAA a= null; System.out.printf("%d:%d",AAA.m,a.m); } } 下列Java源文件代码片段中,()是不正确的。
购买搜题卡 会员须知 | 联系客服
会员须知 | 联系客服
关注公众号,回复验证码
享30次免费查看答案
微信扫码关注 立即领取
恭喜获得奖励,快去免费查看答案吧~
去查看答案
全站题库适用,可用于E考试网网站及系列App

    只用于搜题看答案,不支持试卷、题库练习 ,下载APP还可体验拍照搜题和语音搜索

    支付方式

     

     

     
    首次登录享
    免费查看答案20
    微信扫码登录 账号登录 短信登录
    使用微信扫一扫登录
    登录成功
    首次登录已为您完成账号注册,
    可在【个人中心】修改密码或在登录时选择忘记密码
    账号登录默认密码:手机号后六位