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;
}
...尝试打印出内容,它不会工作