根据入世承诺,我国将扩大金融、保险、电信、分销等领域的对外开放,( )将成为外商投资的热点。
A.基础产业
B.高新技术产业
C.服务业
D.传统产业
参考答案:C
He jumped to his feet, thinking that the planes were going to ________.
A.take off
B.keep off
C.get off
D.turn off
下列程序完成从文件读取文件显示的同时写入第二个文件,则在程序中划线部分应该出现的语句是______。 #include<iostream.h> #include<fstream.h> void main( ) fstream filel,file2;char fn1[10],fn2[10],ch;cout<<"输入源文件名";cin>>fn1;cout<<"输入目标文件名";cin>>fn2;filel.open(fn1,ios::in);while((ch=filel.get( ))!=EOF) cout<<ch; file2.put(oh);filel.close( );file2.close( );