请阅读下列的程序,程序的运行结果是() public class Example01 { public static void main(String[] args) { int num = 127; byte b = num; System.out.println(b); } }
A: 编译报错
B: 编译通过,运行输出127
C: 编译通过,运行报错
D: 以上选项均不正确
A: 编译报错
B: 编译通过,运行输出127
C: 编译通过,运行报错
D: 以上选项均不正确
举一反三
- 请阅读下列的程序 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 Example01 { public static void main(String args) { int num = 127; byte b = num; System.out.println(b); } } 程序的运行结果是( )
- 下列的程序的运行结果是( )public class Example { public static void main(String[] args) { new Father () { public void show() { System.out.println("helloworld"); } }.show(); }}class Father { public void show() { System.out.println("hellofather"); }} A: hellofather B: helloworld C: 编译报错 D: 编译通过,运行报错
- 下面程序的运行结果是public class Demo { public static void main(String[] args) { new Object(){ public void show(){ System.out.println("helloworld"); } }.show(); }} A: 什么也不输出 B: helloworld C: 编译报错 D: 编译通过,运行报错
- 编译运行如下Java代码,输出结果是。 public class Test{ public static void main(String[] args){ int num=5; if(num<=5){ num+=2; System.out.println(num); } System.out.println(num+5); } }