test.txt ファイルには、「aa」という単語が 1 つあります。「aa1」に置き換えたい。ただし、以下のプログラムはファイルを変更しません。どうしたの?
#include <string>
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
fstream iofile("test.txt",ios_base::in|ios_base::app);
if (!iofile)
cerr << "Unable to open file!";
string word;
iofile >> word;
word.push_back('1');
iofile.seekg(0);
iofile << word;
}