Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
#include <iostream> #include <fstream> #include <string> #include <locale.h> using namespace std; int main() { setlocale(LC_ALL, "ru"); ofstream studentG("grades.txt"); studentG << "Тест"; studentG.close(); }