在<fstream>
库里面
都支持 <<
的读入 和 >>
的写出
void ofs()
{
ifstream fin("IN.in");
ofstream fout("OUT.out" , ios::out);
string temp;
if(!fin.is_open()) {cout << "Error!"; exit(1);}
while(getline(fin,temp))
{
fout << temp;
fout << endl;
}
fin.close();
fout.close();
return;
}