ifstream fin1( "input.txt" );
......有些男女在这里......
然后我生成以下输出文件
ofstream fout("output.txt");
....一些代码......
尝试再次在我的代码中使用它
ifstream fin1( "output.txt" );
string a,b,c,d;
while(fin1 >> a >> b >> c >> d)
{
cout<<a<<" 1 "<<b<<" 2 " <<c<<" 3 " <<d<<" 4 "<<endl;
}
...尝试打印出内容,但无效
答案 0 :(得分:1)
您是否记得在打开fout.close()
之前致电fin1
?