Нужно заполнить информацию о студентах и вывести список студентов одного и того же курса, но проблема в том,что после написания ФИО 1ого студента программа завершается и остальная информация остается незаполненной. (помогите пж я просто ток недавно начал программирование изучать)
#include <iostream>
using namespace std;
struct info_student {
int fio;
int adres;
int telefon;
int kurs;
int gruppa;
int grades;
};
int main() {
setlocale(LC_ALL, "RUS"
int n;
cout << "Введите количество студентов: ";
cin >> n;
info_student por[15];
int FIO[20];
for (int i = 0; i < n; ++i) {
cout << "Информация о студенте " << i + 1 << ":" << endl;
cout << "ФИО: " << endl;
cin >> por.fio;
cout << "Адрес: " << endl;
cin >> por.adres;
cout << "Телефон: " << endl;
cin >> por.telefon;
cout << "Курс: " << endl;
cin >> por.kurs;
cout << "Группа: " << endl;
cin >> por.gruppa;
cout << "Оценки: "<<endl;
cin >> por.grades;
}
int selectedKurs;
cout << "Введите номер курса для вывода списка студентов: ";
cin >> selectedKurs;
cout << "Список студентов " << selectedKurs << " курса:" << endl;
for (int i = 0; i < n; ++i) {
if (por.kurs == selectedKurs) {
cout << "ФИО: " << por.fio << ", Адрес: " << por.adres << ", Телефон: " << por.telefon << ", Группа: " << por.gruppa << ", Оценки: " << por.grades << endl;
}
}
return 0;
}
#include <iostream>
using namespace std;
struct info_student {
int fio;
int adres;
int telefon;
int kurs;
int gruppa;
int grades;
};
int main() {
setlocale(LC_ALL, "RUS"
int n;
cout << "Введите количество студентов: ";
cin >> n;
info_student por[15];
int FIO[20];
for (int i = 0; i < n; ++i) {
cout << "Информация о студенте " << i + 1 << ":" << endl;
cout << "ФИО: " << endl;
cin >> por.fio;
cout << "Адрес: " << endl;
cin >> por.adres;
cout << "Телефон: " << endl;
cin >> por.telefon;
cout << "Курс: " << endl;
cin >> por.kurs;
cout << "Группа: " << endl;
cin >> por.gruppa;
cout << "Оценки: "<<endl;
cin >> por.grades;
}
int selectedKurs;
cout << "Введите номер курса для вывода списка студентов: ";
cin >> selectedKurs;
cout << "Список студентов " << selectedKurs << " курса:" << endl;
for (int i = 0; i < n; ++i) {
if (por.kurs == selectedKurs) {
cout << "ФИО: " << por.fio << ", Адрес: " << por.adres << ", Телефон: " << por.telefon << ", Группа: " << por.gruppa << ", Оценки: " << por.grades << endl;
}
}
return 0;
}