有如下程序段 if(x>0) { System.out.println("first");} else if (x > -4) { System.out.println("second");} else { System.out.println("third");} x的取值在什么范围内时,将打印出字符串“second"?
A.x > 0
B.x > -4
C.x < = -4
D.x < = 0 & & x > -4
第1题:
有如下程序段if (x>0) {System.out.println ("first") ;}else if (x>-4) { System.out.println ("second") ; }else{System.out.println ("third") ;}x的取值在( )范围内时,将打印出字符串"second"。
A.x>0
B.x>-4
C.x<=-4
D.x<=0&&x>-4
第2题:
给出下列代码片段: 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
第3题:
给出下面代码段:x处于什么范围时打印字符串“second”。 ( ) public class forLoopStatement { public static void main(String[]args) { int x=______;//给x赋值 if(x>0){System.out.println("first");} else if(x>-3){System.out.println("second");} else{System.out.println("third");} } }
A.x>0
B.x>-3
C.x<=-3
D.x<=0&x>-3
第4题:
为表示关系:x≥Y≥z,应使用的C语言表达式是( )。
A.(x>;=y)&&;(y>;=z)
B.(x>;=y)AND(y>;-x)
C.(x>;=y>;=z)
D.(x>;=y)&(y>;=z)
第5题:
有如下程序段 if(x>0){System.out.println("first");} else if(x>-4){System.out.println("second");{ else{System.out.println("third");}x的取值在什么范围内时,将打印出字符串“second”? ( )
A.x>0
B.x>-4
C.x<-4
D.x<0&&x>-4