//Lee notas de forma iterativa hasta ingresar 0 y ahi calcula el promedio entre las notas ingresadas
#include <stdio.h>
#include <stdlib.h>
main ()
{
float suma=0,prom;
int i=0,nota=0;
printf ("ingrese la nota numero 1:");
scanf ("%d",¬a);
{
suma +=nota; // y suma la nota anteriori++;
printf ("ingrese la siguiente nota: ");
scanf ("%d",¬a);
}
printf ("el promedio es:%f",prom);
system ("pause");
}
No hay comentarios:
Publicar un comentario