对于容量在几千瓦以下的小型水轮发电机组,采用()盘车
A、人工
B、机械
C、电动
D、自动
参考答案:A
下列程序完成从文件读取文件显示的同时写入第二个文件,则在程序中划线部分应该出现的语句是______。 #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( );