第1题:
下列程序的输出结果为 #include<iostream.h> void main() { char*a[]={"hello","the","world"}; char**pa=a; pa++; cout<<*pa<<end1; }
A.hello
B.the
C.world
D.hello the world
第2题:
下列程序段的输出结果是( )。 String MyStr="Hello,"; Mystr=MyStr + "World!"; System.out.println(Mystr);
A.Hello,World!
B.Hello,
C.World!
D.该程序段有语法错误
第3题:
39、以下语句的输出结果是: print("hello",end='+') print("world")
A.hello+world
B.hello+ world
C.hello world
D.hello+ world+
第4题:
下列程序段的输出结果是 ( ) String MyStr="Hello,"; MyStr=MyStr+"World!"; System.out.println(MyStr);
A.Hello,World!
B.Hello.
C.World!
D.该程序段有语法错误
第5题:
4、以下语句的输出结果是: print("hello",end='+') print("world")
A.hello+world
B.hello+ world
C.hello world
D.hello+ world+