Skip to content

Instantly share code, notes, and snippets.

@whalemare
Created December 22, 2015 00:57
Show Gist options
  • Save whalemare/1829a2327079d00995c7 to your computer and use it in GitHub Desktop.
Save whalemare/1829a2327079d00995c7 to your computer and use it in GitHub Desktop.
void printToFile(Polynom polynom)
{
std::ofstream out("poly.txt");
if (!out)
{
cerr << "Ошибка открытия файла!";
system("pause");
system("cls");
}
else
{
out << polynom; // запишем уравнение в файл
out << "\nКонец.";
cout << polynom;
cout << "\nЗапись в файл выполнена успешно!";
system("pause");
system("cls");
}
out.close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment