请阅读下列的程序publicclassExample01{publicstaticvoidmain(String[]args){intnum=127;byteb=num;System.out.println(b);}}程序的运行结果是()
举一反三
- 请阅读下列的程序 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: 以上选项均不正确
- 下列程序编译并运行的结果为()publicclassTest{publicstaticvoidmain(String[]args){try{inti=1;System.out.println(i++);}finally{System.out.println(++i);}}}
- 阅读下面的程序 importjava.util.*; classHashSetDemo{ publicstaticvoidmain(String[]args){ HashSeths=newHashSet(); hs.add("abc"); hs.add("abc"); System.out.println(hs); } } 下列选项中,哪一个是程序的运行结果