这是我将输入写入文本文件的代码
ofstream fout("C:\\det.txt",ios::app);
fout << input << endl;
fout.close();
这个程序正在运行,但是当我输入多个输入时,它的输出是这样的
Output
four
three
two
在上面的输出中,二是我的最后一个条目,四是我的第一个条目,但我希望它以相反的顺序出现,最新的输入应该首先出现
Required output
two // latest entry
three // 2nd latest entry
four // 3rd entry