System.out.println(“Hello” + 9 + 1); 正确的输出结果是___________
举一反三
- 阅读下列代码 System.out.println(“Hello” 9 1) 下列选项中,哪个是正确的输出结果( )
- System.out.println("hello");System.out.println("hello");//上面代码的输出结果
- 语句 System.out.println("Hello,world!"+4+8);的输出结果是Hello,world!48。()
- 请看下面的程序代码,当 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: 以上都可以
- 语句 System.out.println(4+8+"Hello,world!"); 的输出结果是 12Hello,world!