• Lenguaje

    C

  • Descripción

    En una tienda se ha registrado N clientes durante el mes, llenaron una ficha de atención con los siguientes datos Edad y Sexo (1-Masculino, 2-Femenino) de cada cliente atendido.
    Determinar la cantidad de hombres y mujeres ha ingresado a la tienda durante el mes, también determinar el porcentaje de hombres y mujeres atendidos.

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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    int hombres, i, mujeres, n, sexo;
    float porcentaje_hombres, porcentaje_mujeres;
    char edad[63];
    hombres = 0;
    mujeres = 0;
    porcentaje_hombres = 0;
    porcentaje_mujeres = 0;
    printf ("Ingresa el valor de n: ");
    scanf ("%d", &n);
    (void) getchar ();
    for (i=1; i<=n; i++)
    {
        printf ("PROCESO %d\n", i);
        printf ("Ingresa el edad: ");
        scanf ("%[^\r\n]", edad);
        (void) getchar ();
        printf ("Selecciona el valor de sexo.\n");
        printf ("\t1.- Masculino\n");
        printf ("\t2.- Femenino\n");
        printf ("\t: ");
        do {
            scanf ("%d", &sexo);
            (void) getchar ();
            if (sexo<1||sexo>2)
                printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
        } while (sexo<1||sexo>2);
        if(sexo==1)
            hombres++;
        else
            mujeres++;
        printf ("Edad: %s\n", edad);
        putchar ('\n');
    }
    if (n == 0)
    {
        porcentaje_hombres = 0;
    }
    else
    {
        porcentaje_hombres=100.0*hombres/n;
    }
    if (n == 0)
    {
        porcentaje_mujeres = 0;
    }
    else
    {
        porcentaje_mujeres=100.0*mujeres/n;
    }
    printf ("Valor de hombres: %d\n", hombres);
    printf ("Valor de mujeres: %d\n", mujeres);
    printf ("Valor de porcentaje hombres: %f\n", porcentaje_hombres);
    printf ("Valor de porcentaje mujeres: %f\n", porcentaje_mujeres);
    system ("pause");
    return EXIT_SUCCESS;
}