• Lenguaje

    C

  • Descripción

    Permita determinar de una lista de 10 numeros indicados por el usuario:
    a. ¿Cuántos estan entre el 50 y 75, ambos inclusive?
    b. ¿Cuántos mayores de 80?
    c. ¿Cuántos menores de 30?

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

int main (void)
{
    int a, b, c, i;
    float un_numero;
    a = 0;
    b = 0;
    c = 0;
    for (i=1; i<=10; i++)
    {
        printf ("PROCESO %d\n", i);
        printf ("Ingresa el valor de un numero: ");
        scanf ("%f", &un_numero);
        (void) getchar ();
        if(un_numero>=50&&un_numero<=75)
            a=a+1;
        if(un_numero>80)
            b=b+1;
        if(un_numero<30)
            c=c+1;
        putchar ('\n');
    }
    printf ("Valor de a: %d\n", a);
    printf ("Valor de b: %d\n", b);
    printf ("Valor de c: %d\n", c);
    system ("pause");
    return EXIT_SUCCESS;
}