You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
689 B
27 lines
689 B
#include "../SAE.h"
|
|
|
|
int modifNoteMinAdmis()
|
|
{
|
|
int noteMaths, noteFrançais, noteAnglais, noteSpe;
|
|
printf("Entrez la nouvelle note minimale d'admission en maths : ");
|
|
scanf("%d", ¬eMaths);
|
|
printf("Entrez la nouvelle note minimale d'admission en français : ");
|
|
scanf("%d", ¬eFrançais);
|
|
printf("Entrez la nouvelle note minimale d'admission en anglais : ");
|
|
scanf("%d", ¬eAnglais);
|
|
printf("Entrez la nouvelle note minimale d'admission en spécialité : ");
|
|
scanf("%d", ¬eSpe);
|
|
|
|
}
|
|
|
|
modifNbAdmisMax()
|
|
{
|
|
int nbAdmisMax;
|
|
printf("Entrez le nouveau nombre d'admis maximum : ");
|
|
scanf("%d", &nbAdmisMax);
|
|
return nbAdmisMax;
|
|
}
|
|
|
|
|
|
|