• Lenguaje

    C

  • Descripción

    Leer las notas de una clase de informática y deducir todas aquellas que son NOTABLES (>= 14 y < 18).

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>

int main (void)
{
    float nota;
    char tecla_repetir;
    do {
        system ("cls");
        printf ("Ingresa el valor de nota: ");
        scanf ("%f", &nota);
        (void) getchar ();
        if(nota>=14&&nota<18)
            printf ("Notable\n");
        putchar ('\n');
        printf ("\250Deseas repetir el proceso? (S/N): ");
        do {
            tecla_repetir = (char) getch();
        } while (tecla_repetir!='s' && tecla_repetir!='n' && tecla_repetir!='S' && tecla_repetir!='N');
        putchar ('\n');
    } while (tecla_repetir=='s' || tecla_repetir=='S');
    return EXIT_SUCCESS;
}