Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- int notes;
- float somme = 0.0;
- float moyenne;
- float compteur = 0.0 ;
- int min = 20;
- int max = 0;
- do
- {
- scanf("%d",¬es);
- if(notes >= 0 && notes <= 20)
- {
- compteur++;
- somme = somme + notes;
- if(notes < min)
- {
- min = notes ;
- }
- if(notes > max)
- {
- max = notes;
- }
- }
- } while ( (notes >= 0) && (compteur <= 10) );
- if(compteur > 0 )
- {
- printf("Test condition \n");
- moyenne = somme / compteur;
- }
- printf("La moyenne est de %.2f \n ",moyenne);
- printf("Le max est de : %d \n ",max);
- printf("Le min est de : %d \n",min);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement