问题及代码:
#include <iostream>
#include <cstdlib>
#include <fstream>
using namespace std;
int main()
{
fstream outfile,infile;
infile.open("abc.txt",ios::in); // (1)
if(!infile) {
cout<<"Can’t open the file."<<endl;
abort();
}
outfile.open("newabc.txt",ios::out);//(2)
if(!outfile) {
cout<<"Can’t open the file."<<endl;
abort();
}
char buf[80];
int i=1;
while(!infile.eof()) // (3)
{
infile.getline(buf,'\r'); //(4)
outfile<<i++<<": "<<buf<<endl; //(5)
}
infile.close();
outfile.close();
return 0;
}
运行结果:
学习小结:
又回去看了一下视频,学习到一些东西
三个get函数和俩getline函数的用法,从输入流中提取数据到字符数组或者字符变量中
不错!
加油