请阅读下列的程序 public class Example01 { public static void main(String args) { int num = 127; byte b = num; System.out.println(b); } } 程序的运行结果是( )
举一反三
- 请阅读下列的程序 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); } } A: 编译报错 B: 编译通过,运行输出127 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); } }
- 请阅读下面的程序 public class Example03 { public static void main(String args) { int x = 3; if (x > 5) { System.out.println("a"); } else { System.out.println("b"); } } } 程序的运行结果是()
- 请阅读下面的程序 public class Example { public static void main(String[] args) { int x = 1; do { x++; } while (x <= 4); System.out.println("x = " + x); } } 程序的运行结果是()