• Lenguaje

    PSeInt (Pseudocódigo)

  • Descripción

    Dado dos números enteros, hallar la suma: S = n1 + n2

1
2
3
4
5
6
7
8
Proceso N1MasN2
    Escribir Sin Saltar "Ingresa el valor de n1:";
    Leer n1;
    Escribir Sin Saltar "Ingresa el valor de n2:";
    Leer n2;
    S <- n1+n2;
    Escribir "Valor de S: ", S;
FinProceso