阅读下列代码 System.out.println(“Hello” 9 1) 下列选项中,哪个是正确的输出结果( )
举一反三
- System.out.println("hello");System.out.println("hello");//上面代码的输出结果
- System.out.println(“Hello” + 9 + 1); 正确的输出结果是___________
- 阅读下面的代码class Example{public static voi...下列选项中,哪个是程序正确的输出结果()
- 阅读下面的代码: class Person{ void say(){ System.out.println("hello"); } } class Example{ public static void main(String[] args){ Person p1 = new Person(); Person p2 = new Person(); p2.say(); p1.say(); p2=null; p2.say(); } } 下列选项中,哪个是程序的输出结果?()
- 请看下面的程序代码,当 n 为( )值时,程序段将输出字符串 second。 [br][/br] switch(n) { [br][/br] case 0: System .out .println(“first”); [br][/br] case 1: [br][/br] case 2: System .out .println(“second”); break; [br][/br] default: System .out .println(“end”); [br][/br] }(2.0) A: 0 B: 1 C: 2 D: 以上都可以