Tiens avec ça tu pourras faire des test complet 
- include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
int age;
int taille_conditionDebut(0), taille_conditionFin(0);
cout<<"Exemple age condition"<<endl;
cout<<"Indiquez le nombre de test: ";
cin>>taille_conditionFin;
do
{
cout << "age ?" << endl;
cin >> age;
taille_conditionDebut++;
if (age<14) {
cout << "Vous avez 90 % . " <<endl;
}
else if (age>=14 && age<=16) {
cout << "Vous avez 80% "<<endl;
}
else if (age>16 && age<=20) {
cout << "Vous avez 70% "<<endl;
}
else {
cout<< "vous avez 50% "<<endl;
}
}
while(taille_conditionDebut!=taille_conditionFin);
}