36 lines
730 B
C
36 lines
730 B
C
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
|
|
int main(void) {
|
|
|
|
float reponse;
|
|
|
|
printf("Mention\n---------\nVeuillez entrez votre note, votre mention vous sera presenté.\n ");
|
|
|
|
|
|
do{
|
|
printf("Veuillez entrez une note comprise entre 10 et 20\n");
|
|
scanf("%f",&reponse);
|
|
}while(reponse>20 || reponse<10);
|
|
|
|
|
|
|
|
if(reponse<12){
|
|
printf("Vous n'avez pas obtenue de mention, mais vous avez votre bac\n");
|
|
}
|
|
|
|
|
|
if(reponse >= 12 && reponse < 14){
|
|
printf("Vous avez obtenu votre bac avec mention assez bien\n");
|
|
}
|
|
else {
|
|
if(reponse >=14 && reponse < 16){
|
|
printf("Vous avez obtenu votre bac avec mention bien\n");
|
|
}
|
|
else
|
|
printf("Vous avez obtenu votre bac avec mention trés bien\n");
|
|
}
|
|
|
|
return 0;
|
|
}
|