• Lenguaje

    C

  • Descripción

    Cargar un número entero positivo de hasta tres cifras y muestre un mensaje indicando si tiene 1, 2 o 3 cifras. Mostrar un mensaje de error si el número de cifras es mayor.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    int numero;
    printf ("Ingresa el valor de numero: ");
    scanf ("%d", &numero);
    (void) getchar ();
    if(numero>=0&&numero<10)
        printf ("1 cifra\n");
    if(numero>=10&&numero<100)
        printf ("2 cifras\n");
    if(numero>=100&&numero<1000)
        printf ("3 cifras\n");
    if(numero>=1000)
        printf ("Error\n");
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}