问题 单项选择题

有如下程序段
if (x>0) System. out. println ("first") ;
else if (x>-4) System. out. println ("second") ;
elseSystem. out. println ("third") ;
x的取值在( )范围内时,将打印出字符串"second"。

A.x>0

B.x>-4

C.x<=-4

D.x<=0&&x>-4

答案

参考答案:D

单项选择题
填空题 案例分析题