#include <stdio.h>
// déclaration des prototypes de fonctions
int saisie (float []);
void affichage (float [], int);
float moyenne (float [], int);
float max (float [], int);
float min (float [], int);
//fonction principale
int main()
{
int n;
float notes[20],Moy, M, m...