std::vector<Homme> prétendants { /* insérez liste de prétendants */ };
const int STATUT_SOCIAL_REQUIS { /* insérez le nombre requis en fonction de son éducation, situation actuelle, etc. */ };
for (const Homme prétendant : prétendants) {
if (prétendant.statut_social >= STATUT_SOCIAL_REQUIS) {
prétendant.fellation();
}
}