students obj;
chek_n(n);
ifstream file1("new_file.txt");
if (file1.is_open())
{
for (int i = 0; i < n; i++)
{
file1 » stud[i].surname » q » stud[i].name » q » stud[i].patronymic » q »
stud[i].age » q » stud[i].gender » q » stud[i].course » q
» stud[i].academic_performance » q;
}
file1.close();
}
else
{
cout « "File can't be read" « endl;
}
int add;
cout « "How many students do you want to add? " « endl; cin » add;
ofstream file2("new_file.txt", ios_base::ate | ios_base::app);
if (file2.is_open())
{
students *stud1 = new students[n];
for (int i = 0; i < n; i++)
{
stud1[i] = stud[i];
}
delete[] stud;
students *stud = new students[n + add];
for (int j = 0; j < n + add; j++)
{
if (j < n)
{
stud[j] = stud1[j];
}
else {
cout « "Input surname: "; cin » stud[j].surname; file2 « stud[j].surname « " | ";
cout « "Input name: "; cin » stud[j].name; file2 « stud[j].name « " | ";
cout « "Input patronomyc: "; cin » stud[j].patronymic; file2 « stud[j].patronymic « " | ";
cout « "Input age: "; cin » stud[j].age; file2 « stud[j].age « " | ";
cout « "Input genger: "; cin » stud[j].gender; file2 « stud[j].gender « " | ";
cout « "Input course: "; cin » stud[j].course; file2 « stud[j].course « " | ";
cout « "Input academic performance: "; cin » stud[j].academic_performance; file2 « stud[j].academic_performance « " |\n";
}
}
for (int i = 0; i < n + add; i++)
{
/* cout « stud1[i].surname « " | " « stud1[i].name « " | " « stud1[i].patronymic
« " | " « stud1[i].age « " | " « stud1[i].gender « " | " « stud1[i].course
« " | " « stud1[i].academic_performance « " |\n";*/
}
delete[]stud1;
}
else
{
cout « "File can't be read" « endl;
}
return stud;
}
возвращай указатель
Нечитаемо(
Обсуждают сегодня