из файла нет.
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
int main()
{
string path = "./hello.txt";
string str;
fstream file;
file.open(path, fstream::in | fstream::out | fstream::app);
if (!file.is_open())
{
cout << " Ошибка в открытии файла" << endl;
}
else
{
int ch(0);
cin >> ch;
if ( ch == 1 )
{
cin >> str;
file << str << "\n";
}
if ( ch == 2 )
{
cout << " Успешно !!!" << endl;
while(!file.eof())
{
file >> str;
cout << str << endl;
}
}
}
file.close();
return 0;
}
попробуйте отладчиком пройтись
Обсуждают сегодня