viernes, 16 de noviembre de 2018

APROBAR Y REPROVAR

PROGRAMA PARA REPROBAR O APROBAR A UN ALUMNO

#include <stdio.h>
#include <conio.h>
#include <math.h>
int main ()
{
                int nota1, nota2, nota3, nota4,nota5;
                float pro;
                printf("\n NOTAS");
                printf ("\n Ingrese primera nota:");
                scanf ("%d", &nota1);
                printf ("\n Ingrese segunda nota:");
                scanf ("%d", &nota2);
                printf ("\n Ingrese tercera nota:");
                scanf ("%d", &nota3);
                printf ("\n Ingrese cuarta nota:");
                scanf ("%d", &nota4);
                printf ("\n Ingrese quinta nota:");
                scanf ("%d", &nota5);
               
                pro=nota1+nota2+nota3+nota4+nota5/5;
               
                if (pro<60)
                               printf ("\n REPROBADO");
                              
                              
                if (pro>60 && pro<=100)
                              
                               printf ("\n APROBADO");
                              
                return 0;
}

No hay comentarios.:

Publicar un comentario