c++中 fstream in("C:\\file1.txt",ios::in);的作用是什么
第1行#include<fstream.h>第2行#include<ctype.h>第3行main()第4行{第5行fstreamin("C:\\file1.txt",i...
第 1 行 #include <fstream.h>
第 2 行 #include<ctype.h>
第 3 行 main()
第 4 行 {
第 5 行 fstreamin("C:\\file1.txt",ios::in);
第 6 行 if(!in)
第 7 行 {
第 8 行 cout<<"Erroropen file1.";
第 9 行 return(0);
第 10 行 }
第 11 行 fstreamout("C:\\file2.txt",ios::out);
第 12 行 if(!out)
第 13 行 {
第 14 行 cout<<"Error openfile2.";
第 15 行 return(0);
第 16 行 }
第 17 行 char ch;
第 18 行 while((ch=in.get())!=EOF)
第 19 行 out<<char(toupper(ch));
第 20 行 return(0);
}
中的作用? 展开
第 2 行 #include<ctype.h>
第 3 行 main()
第 4 行 {
第 5 行 fstreamin("C:\\file1.txt",ios::in);
第 6 行 if(!in)
第 7 行 {
第 8 行 cout<<"Erroropen file1.";
第 9 行 return(0);
第 10 行 }
第 11 行 fstreamout("C:\\file2.txt",ios::out);
第 12 行 if(!out)
第 13 行 {
第 14 行 cout<<"Error openfile2.";
第 15 行 return(0);
第 16 行 }
第 17 行 char ch;
第 18 行 while((ch=in.get())!=EOF)
第 19 行 out<<char(toupper(ch));
第 20 行 return(0);
}
中的作用? 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询