Newer
Older
#include <iostream>
#include <vector>
using namespace std;
string name;
double note_TP;
double note_Partiel;
double note_Globale;
};
string name;
vector<Eleve> tableau_Eleves;
};
e1.name = "Pauline";
e1.note_TP = 14;
e1.note_Partiel = 13;
e2.name = "Richard";
e2.note_TP = 18;
e2.note_Partiel = 15;
e3.name = "Albert";
e3.note_TP = 10;
e3.note_Partiel = 7;
e5.note_TP = 19;
e5.note_Partiel = 14;
l1.name = "L1";
l1.tableau_Eleves = {e1, e2, e3, e4, e5};
for(int i=0; i < l1.tableau_Eleves.size(); i++) {
l1.tableau_Eleves[i].note_Globale = (l1.tableau_Eleves[i].note_TP + l1.tableau_Eleves[i].note_Partiel)/2.0;
if(l1.tableau_Eleves[i].note_Globale >= var.note_Globale) {