请阅读下列的程序 public class Example01 { public static void main(String[] args) { int num = 127; byte b = num; System.out.println(b); } } 程序的运行结果是( )
A. 编译报错
B. 编译通过,执行输出127
C. 编译通过,执行报错
D. 以上选项均不正确
查看答案
请阅读下面的程序 public class Example { public static void main(String[] args) { int x = 1; do { x++; } while (x <= 4); System.out.println("x = " + x); } } 运行程序后,下列选项中哪一个是x的值。( )
A. 3
B. 4
C. 5
D. 6
请阅读下面的程序。 public Class WhileDemo5 { public static void main(String[] args) { int n = 5; while (n < 10) { System.out.print(n); n++; }} } 下列选项中,哪一个是程序运行的结果( )
A. 无输出
B. 输出56789
C. 死循环
D. 编译错误
请阅读下面的程序 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))