• Lenguaje

    C

  • Descripción

    Un postulante a un empleo, realiza un test de capacitación, se obtuvo la siguiente información: cantidad total de preguntas que se le realizaron y la cantidad de preguntas que contestó correctamente. Se pide confeccionar un programa que ingrese los dos datos por teclado e informe el nivel del mismo según el porcentaje de respuestas correctas que ha obtenido, y sabiendo que:
    - Nivel máximo: Porcentaje >= 90%.
    - Nivel medio: Porcentaje >= 75% y < 90%.
    - Nivel regular: Porcentaje >= 50% y < 75%.
    - Fuera de nivel: Porcentaje < 50%.

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

int main (void)
{
    float porcentaje, preguntas_correctas, total_de_preguntas;
    printf ("Ingresa el valor de preguntas correctas: ");
    scanf ("%f", &preguntas_correctas);
    (void) getchar ();
    printf ("Ingresa el valor de total de preguntas: ");
    scanf ("%f", &total_de_preguntas);
    (void) getchar ();
    porcentaje=100.0*preguntas_correctas/total_de_preguntas;
    if(porcentaje>=90)
        printf ("Nivel m\240ximo\n");
    if(porcentaje>=75&&porcentaje<90)
        printf ("Nivel medio\n");
    if(porcentaje>=50&&porcentaje<75)
        printf ("Nivel regular\n");
    if(porcentaje<50)
        printf ("Fuera de nivel\n");
    printf ("Valor de porcentaje: %g\n", porcentaje);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}