在java中,下面()语句可以在屏幕输出"hello,world!"
A: System.out.println("hello,world!");
B: system.out.println("hello.world!");
C: system.Out.println("hello,world!");
D: System.Out.println("hello,world!");
A: System.out.println("hello,world!");
B: system.out.println("hello.world!");
C: system.Out.println("hello,world!");
D: System.Out.println("hello,world!");
举一反三
- 语句 System.out.println("Hello,world!"+4+8);的输出结果是Hello,world!48。()
- 执行Java语句“if(1<0||false) System.out.println("Hello world!);”,显示器上将显示()。 A: Hello world! B: 什么都没显示 C: Hello,world! D: "Hello world!"
- 以下要输出“hello,world!”正确的是? A: String s=String.format("%1s%2s","hello","world");System.out.println(s); B: String s=String.format("%1$s,%2$s","hello","world");System.out.println(s); C: String s=String.format("%s,%s","hello","world");System.out.println(s); D: String s=String.format("%1s,%2s","hello","world");System.out.println(s);
- 语句 System.out.println(4+8+"Hello,world!"); 的输出结果是 12Hello,world!
- 以下语句执行结果是()String str = " hello World ";System.out.println(str.trim()); A: hello World B: hello World C: helloWorld D: 程序异常