Advertisement
ForcaDz

TP4 : exo1

Apr 7th, 2023 (edited)
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.87 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5.  
  6. int main()
  7. {
  8.  
  9.     int notes;
  10.     float somme = 0.0;
  11.     float moyenne;
  12.     float compteur = 0.0 ;
  13.  
  14.     int min = 20;
  15.     int max = 0;
  16.  
  17.     do
  18.     {
  19.         scanf("%d",&notes);
  20.  
  21.         if(notes >= 0 && notes <= 20)
  22.         {
  23.             compteur++;
  24.             somme = somme + notes;
  25.  
  26.             if(notes < min)
  27.             {
  28.                 min = notes ;
  29.             }
  30.  
  31.             if(notes > max)
  32.             {
  33.                 max = notes;
  34.             }
  35.         }
  36.  
  37.        
  38.  
  39.     } while ( (notes >= 0) && (compteur <= 10) );
  40.    
  41.  
  42.     if(compteur > 0 )
  43.     {
  44.         printf("Test condition \n");
  45.         moyenne = somme / compteur;
  46.     }
  47.  
  48.     printf("La moyenne est de %.2f \n ",moyenne);
  49.     printf("Le max est de : %d \n ",max);
  50.     printf("Le min est de : %d \n",min);
  51.  
  52.  
  53.     return 0;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement