en una clase 5 alumnos hicieron 3 examenes escribir cuantos aprovaron cuantos aprovaron 2 y cuantos aprovaron 1 y que permita la lectura de los datos y el calculo de las estadisticas
class Student{ public: string name; int exam1; int exam2; int exam3; int total; string status; int getExam1(); int getExam2(); int getExam3(); int getTotal(); string getStatus(); } int main(){ vector<Student> students; // create student Student student1; student1.name = "juan"; student1.exam1 = 3; student1.exam2 = 3; student1.exam3 = 3; student1.total = student1.exam1 + student1.exam2 + student1.exam3; if (student1.total >= 8) { student1.status = "aprobado"; }else{ student1.status = "reprobado"; } students.push_back(student1); // create student Student student2; student2.name =