A、agriculture
B、the energy industry
C、the service sector
D、the manufacturing industry
第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.hellotheworld
第2题:
A.Cylinders
B.Heads
C.Tracks
D.Sectors
第3题:
4、以下语句的输出结果是: print("hello",end='+') print("world")
A.hello+world
B.hello+ world
C.hello world
D.hello+ world+
第4题:
下列程序的输出结果为 #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
第5题:
87、如果输入start数据为2,输入end数据为4,给出下列程序的运行结果____ list1 = ["hello", "world", "python","java", "pascal"] start,end=int(input("输入start:")),int(input("输入end:")) list2=list1[start:end] print(list2)
第6题:
39、以下语句的输出结果是: print("hello",end='+') print("world")
A.hello+world
B.hello+ world
C.hello world
D.hello+ world+