• Lenguaje

    PSeInt (Pseudocódigo)

  • Descripción

    Calculadora que suma, resta, multiplica y divide

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
Proceso CalculadoraQueSumaRestaMultiplicaYDivide
    Repetir
        Escribir Sin Saltar "Ingresa el valor de a:";
        Leer a;
        Escribir Sin Saltar "Ingresa el valor de b:";
        Leer b;
        Escribir "Selecciona el valor de operacion.";
        Escribir "    1.- Suma";
        Escribir "    2.- Resta";
        Escribir "    3.- Multiplicación";
        Escribir "    4.- División";
        Escribir Sin Saltar "    :";
        Repetir
            Leer operacion;
            Si operacion<1 O operacion>4 Entonces
                Escribir Sin Saltar "Valor incorrecto. Ingrésalo nuevamente.: ";
            FinSi
        Hasta Que operacion>=1 Y operacion<=4;
        resultado <- 0;
        Si operacion = 1 Entonces
            resultado <- a+b;
        FinSi
        Si operacion = 2 Entonces
            resultado <- a-b;
        FinSi
        Si operacion = 3 Entonces
            resultado <- a*b;
        FinSi
        Si operacion = 4 Y b <> 0 Entonces
            resultado <- a/b;
        FinSi
        Escribir "Valor de resultado: ", resultado;
        Escribir "";
        Repetir
            Escribir Sin Saltar "¿Deseas repetir el proceso? (S/N):";
            Leer tecla_repetir;
        Hasta Que tecla_repetir='s' O tecla_repetir='n' O tecla_repetir='S' O tecla_repetir='N'
    Hasta Que tecla_repetir='n' O tecla_repetir='N'
FinProceso