• Lenguaje

    PSeInt (Pseudocódigo)

  • 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
Proceso NumeroDeCifras
    Escribir Sin Saltar "Ingresa el valor de numero:";
    Leer numero;
    Si numero>=0 Y numero<10 Entonces
        Escribir "1 cifra";
    FinSi
    Si numero>=10 Y numero<100 Entonces
        Escribir "2 cifras";
    FinSi
    Si numero>=100 Y numero<1000 Entonces
        Escribir "3 cifras";
    FinSi
    Si numero>=1000 Entonces
        Escribir "Error";
    FinSi
FinProceso