题目内容

请阅读下面的程序 public class Example { public static void main(String[] args) { int x = 1; do { x++; } while (x <= 4); System.out.println("x = " + x); }} 程序的运行结果是()

A. x=3
B. x=4
C. x=5
D. x=6

查看答案
更多问题

当String s=null;时,下列选项中会抛出空指针异常的是( )

A. if((s!=null)&(s.length()>0))
B. if((s!=null)&&(s.length()>0))
C. if((s!=null)&&(s.length()==0))
D. if((s==null)||(s.length()==0))

请阅读下面的程序 public class Example02 { public static void main(String[] args) { int x = 0; // 定义变量x,初始值为0 int y = 0; // 定义变量y,初始值为0 boolean b = x==0 || y++<0; System.out.println("b = "+b+", y = "+y); }} 程序的运行结果是()

A. b = false, y = 0
B. b = false, y = 1
C. b = true, y = 0
D. b = true, y = 1

请阅读下面的程序 public class Test { public static void main(String[] args) { for(int x =0;x<5;x++) { if(x%2==0) break; System.out.print(x+" "); } } } 下列选项中,哪一个是程序的运行结果( )

A. 12345
B. 024
C. 13
D. 不输出任何内容

多行注释"/*…*/"中不可以嵌套单行注释"//"。

A. 对
B. 错

答案查题题库