Usa la tag code per postare il codice
#include <stdio.h>
#include <conio.h>
main()
{
int i;
float vet[10], max = 0, el, med = 0;
textmode(2);
printf("\nInserisci i numeri:\n");
for (i = 0; i < 10; i++)
{
scanf("%f", &el);
if (el <= 0)
break;
if (el > max)
max = el;
med += el;
vet[i] = el;
}
printf("Numero max inserito: %g\n", max);
printf("Numero elementi inseriti: %d", i);
printf("\nSomma finale %g", med);
printf("\nMedia valori: %g\n", med / (i - 1));
system("pause");
}