• Lenguaje

    C

  • Descripción

    En un zoológico desean saber cuántos niños menores de 10 años ingresan los días domingo.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>

int main (void)
{
    int dia, edad, ninos;
    char tecla_repetir;
    ninos = 0;
    do {
        system ("cls");
        printf ("Ingresa el valor de edad: ");
        scanf ("%d", &edad);
        (void) getchar ();
        printf ("Selecciona el valor de dia.\n");
        printf ("\t1.- Domingo\n");
        printf ("\t2.- Lunes\n");
        printf ("\t3.- Martes\n");
        printf ("\t4.- Mi\202rcoles\n");
        printf ("\t5.- Jueves\n");
        printf ("\t6.- Viernes\n");
        printf ("\t7.- S\240bado\n");
        printf ("\t: ");
        do {
            scanf ("%d", &dia);
            (void) getchar ();
            if (dia<1||dia>7)
                printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
        } while (dia<1||dia>7);
        if(dia==1&&edad<10)
            ninos=ninos+1;
        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');
    printf ("Valor de ninos: %d\n", ninos);
    system ("pause");
    return EXIT_SUCCESS;
}