• Lenguaje

    C

  • Descripción

    Un maestro desea saber qué porcentaje de hombres y qué porcentaje de mujeres hay en un grupo de estudiantes.

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
62
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>

int main (void)
{
    int estudiantes, genero, hombres, mujeres;
    float porcentaje_hombres, porcentaje_mujeres;
    char tecla_repetir;
    estudiantes = 0;
    hombres = 0;
    mujeres = 0;
    porcentaje_hombres = 0;
    porcentaje_mujeres = 0;
    do {
        system ("cls");
        printf ("Selecciona el valor de genero.\n");
        printf ("\t1.- Mujer\n");
        printf ("\t2.- Hombre\n");
        printf ("\t: ");
        do {
            scanf ("%d", &genero);
            (void) getchar ();
            if (genero<1||genero>2)
                printf ("Valor incorrecto. Ingr\202salo nuevamente.: ");
        } while (genero<1||genero>2);
        if(genero==1)
            mujeres=mujeres+1;
        else
            hombres=hombres+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');
    estudiantes=hombres+mujeres;
    if (estudiantes == 0)
    {
        porcentaje_hombres = 0;
    }
    else
    {
        porcentaje_hombres=100.0*hombres/estudiantes;
    }
    if (estudiantes == 0)
    {
        porcentaje_mujeres = 0;
    }
    else
    {
        porcentaje_mujeres=100.0*mujeres/estudiantes;
    }
    printf ("Valor de estudiantes: %d\n", estudiantes);
    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;
}