请阅读下面的程序
classTest/{
privatestaticStringname;
static/{
name="World";
System.out.print(name);
/}
publicstaticvoidmain(String[]args)/{
System.out.print("Hello");
Testtest=newTest();
/}
/}
下列选项中,程序运行结果是()。
:A.World
B.Hello
C.World Hello
D.Hello World
第1题:
下列程序段的输出结果是( )。 String MyStr="Hello,"; Mystr=MyStr + "World!"; System.out.println(Mystr);
A.Hello,World!
B.Hello,
C.World!
D.该程序段有语法错误
第2题:
请阅读下面的程序片段 int x = 3; if (x > 5) { System.out.print("a"); } else { System.out.print("b"); } 选择程序的运行结果()
A.a
B.b
C.ab
D.编译错误
第3题:
请阅读下面的程序,选择正确的运行结果。() class Demo{ private static int x ; public static void main(String[] args){ System.out.println(x++); } }
A.0
B.1
C.无结果
D.编译失败
第4题:
13、Java程序向显示器输出信息“Hello, World”,下列哪种写法是错误的?
A.System.out.print(“Hello, world” );
B.System.out.println(“Hello, world” );
C.System.out.print(“Hello, world\n” );
D.printf(“Hello, world\n” );
第5题:
请阅读下面的程序,选择正确的运行结果。 class Demo{ private static int x ; public static void main(String[] args){ System.out.println(x++); } }
A.0
B.1
C.无结果
D.编译失败