下列代码中if (x 〉0){System.out.printIn("first");}else if (x 〉-3){System.out.printIn ("second");}else{System.out .printIn("third");}要求打印字符串为"second"时,x的取值范围是______。
A: x〈 =0并且x 〉-3
B: x 〉0
C: x 〉-3
D: x〈 =-3
A: x〈 =0并且x 〉-3
B: x 〉0
C: x 〉-3
D: x〈 =-3
举一反三
- 给出下列代码if (x > 0) {System.out.println("first");} else if (x > -3) {System.out.print("second");} else {System.out.println("third");}x的取值在什么范围时将打印字符串"second"? A: x>0 B: x>-3 C: x<=-3 D: x<=0&&x>-3
- 已知下列程序段。if(x>0){ System.out.println("first"); }else if(x>-3){ System.out.println("second"); }else{ System.out.println("third"); }问:x处于 范围时将打印出字符串“second”。(写出区间,行如:[0,8])
- 阅读下面代码 if(x==0){System.out.println("冠军");} else if(x>-3){System.out.println("亚军");} else{System.out.println("季军");} 若要求打印字符串"季军",则变量x的取值范围是______ 答
- 下面的C语言代码,输出结果是:( )int x, y, z;y=1;z=0;if ( z <; 0 ){x = 3;}else if ( y = = 0 ){x = 5;}else{x = 7;}printf("x=%d",x); A: x=3 B: x=5 C: x=7 D: x为随机数
- 下面程序段中正确的是( )。 A: If x<0 Then y=0 If x<1 Then y=1 If x<2 Then y=2 If x>=2 Then y=3 B: If x>=2 Then y=3 If x>1 Then y=2 If x>=0Then y=1 If x>0 Then y=0 C: If x<0 Then y=0 Else If>=0Then y=1 Else y=3 End If D: If x>=2 Then y=3 Else If>=1 Then y=2 Else y=0 End If