15 lines
332 B
C
15 lines
332 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
int main(void)
|
||
|
{
|
||
|
double note_du_bac = 0;
|
||
|
do
|
||
|
{
|
||
|
printf("Saisissez une note de bac comprise entre 0 et 10 : \n");
|
||
|
scanf("%lf", ¬e_du_bac);
|
||
|
|
||
|
} while (note_du_bac >= 10);
|
||
|
|
||
|
printf("Votre notre de bac est comprise entre 0 et 10.\n");
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|