下列代码中if(x>O){System.out.println("first");}elseif(x>-3){System.out.println("second");)else{System.out.println("third");)要求打印字符串为“second”时,X的取值范围是( )。A.x-3B.x>0C.x>-3D.x

题目

下列代码中

if(x>O){System.out.println("first");}

elseif(x>-3){System.out.println("second");)

else{System.out.println("third");)

要求打印字符串为“second”时,X的取值范围是( )。

A.x-3

B.x>0

C.x>-3

D.x<=-3


相似考题
参考答案和解析
正确答案:A

A【解析】本题考查Java中的条件结构。条件语句根据判定条件的真假来决定执行哪一种操作。题目所给程序,如果x>0,则直接执行其后的System.out.println("first")语句,而不执行elseif等语句,当x<-0且x>-3时执行System.out.println("second")语句,所以选项A正确。当x为其他值时执行else语句。应该对Java的流程控制涉及的语句有所掌握,这些都是考试重点内容。

更多“下列代码中if(x&gt;O){System.out.println(&quot;first&quot;);}elseif(x&gt;-3){System.out.pri ”相关问题
  • 第1题:

    为表示关系:x≥Y≥z,应使用的C语言表达式是( )。A.(x>=y)&&(y>=z)B.(x>=y)A

    为表示关系:x≥Y≥z,应使用的C语言表达式是( )。

    A.(x>;=y)&&;(y>;=z)

    B.(x>;=y)AND(y>;-x)

    C.(x>;=y>;=z)

    D.(x>;=y)&(y>;=z)


    正确答案:A
    C语言中用“&&”作两个表达式的连接。

  • 第2题:

    下列代码中 if(x>O){System.out.println("first");} elseif(x>-3){System.out.println("second");) else{System.out.println("third");) 要求打印字符串为“second”时,X的取值范围是( )。

    A.x<=0且x>-3

    B.x>0

    C.x>-3

    D.x<=-3


    正确答案:A
    A【解析】本题考查Java中的条件结构。条件语句根据判定条件的真假来决定执行哪一种操作。题目所给程序,如果x>0,则直接执行其后的System.out.println("first")语句,而不执行elseif等语句,当x<-0且x>-3时执行System.out.println("second")语句,所以选项A正确。当x为其他值时执行else语句。应该对Java的流程控制涉及的语句有所掌握,这些都是考试重点内容。

  • 第3题:

    给出下列代码片段: 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


    正确答案:C

  • 第4题:

    下列代码中 if(x>0){System.out.println("first");} elseif(x>-3){System.out.println("second");} else{System.out.println("third");} 要求打印字符串为"second"时,x的取值范围是( )。

    A.x<=0并且x>-3

    B.x>0

    C.x>-3

    D.x<=-3


    正确答案:A
    解析: 本题考查Java中的条件结构。条件语句根据判定条件的真假来决定执行哪一种操作。题目所给程序,如果x>0,则直接执行其后的System.out.println("firsf")语句,而不执行elseif等语句,当x=0而H x>-3时执行 System.out.prinfin("second")语句,所以选项A正确。当x为其他值时执行else语句。应该对Java的流程控制涉及的语句数量有所掌握,这些都是考试重点内容。

  • 第5题:

    请阅读下列程序代码,然后将程序的执行结果补充完整。横线处应填写的内容是( )。 程序代码: public class throwsExeeption{ static void Proc(intsel) throws Arithmetic Exception,Array Index Out Of Bounds Exception{ System.out.println("InSituation"+sel); if(sel= =0){ System.OUt.println("noException caught"); return; } else if(sel= =l){ int iArray[]=newint[4]; iArray[1]=3; } } public static void main(String args[]){ try{ Proe(O); Proc(1); } catch(Array Index Out Of Bounds Exception e){ System.out.println("Catch"+e); } finally{ System.out.println("inProcfinally"): } } } 执行结果: In Situation 0 no Exception caught in Proc finally

    A.In Situation l

    B.In Situation

    C.with Catch

    D.int iArray l


    正确答案:A
    A。【解析】本题考查考生阅读Java程序的能力。题目程序看似复杂,但流程非常简单。程序的public类是thtowsExeeption,类中定义了Proe(intsel)方法。程序入口是main方法,使用try-catch-finally来捕获ArithmeticExeeption和ArrayIndexOutOfBoundsExeeption异常,这两个异常是关于算术异常或数组索引越界的异常。执行Proe(0)时,输出InSituation0和noExceptioncaught两条信息;执行Proc(1)时,输出InSituationl和inProcfinally两条信息。整个程序并未发生异常。