Advertisement
ForcaDz

TP3 : saisi de note

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