Мне нужно изменить порядок файлов и вывести их в другой файл.Например, ввод
:
hello
this is a testing file again
just so much fun
Ожидаемый вывод:
just so much fun
this is a testing file again
hello
Это мой текущий код, он распечатывается туда, где он меняет порядок строкно и порядок символов каждого слова.
Ток:
nuf hcum os tsuj
niaga elif gnitset a si siht
olleh
int print_rev(string filename, char c){
ifstream inStream (filename);
ofstream outStream;
inStream.seekg(0,inStream.end);
int size = inStream.tellg();
outStream.open("output.txt");
for (int j=1; j<=size; j++){
inStream.seekg(-j, ios::end);
c=inStream.get();
outStream << c;
}
inStream.close();
outStream.close();
return 0;
}