#include <stdio.h> #include <string.h> #include <iostream> int main () { int i; system ("color 0A"); float notas; printf("Intrdodusca Nota: "); scanf("%f", ¬as); if(notas < 60) { printf("Suspenso: %s\n", notas); } if(notas>= 60 && notas <=70) { printf("Regular: %s\n", notas); } if(notas>= 71 && notas <=80) { printf("Bien: %s\n", notas); } if(notas>= 81 && notas <=90) { printf("Muy Bien: %s\n", notas); } if(notas>= 91 && notas <=100) { printf("Exelente: %s\n", notas); } if(notas> 100) { printf("Nota no Valida: %s\n", notas); } system ("pause"); return 0; }
-
Editado por egostar, 23 octubre 2017 - 06:59 .
Se agrega etiqueta de código