-
Lenguaje
PSeInt (Pseudocódigo)
-
Descripción
Ingrese cuatro números que sume los primeros dos datos, el resultado lo multiplique por la suma de los últimos dos números.
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
Proceso MultiplicacionDeSumas
Escribir Sin Saltar "Ingresa el valor de N1:";
Leer N1;
Escribir Sin Saltar "Ingresa el valor de N2:";
Leer N2;
Escribir Sin Saltar "Ingresa el valor de N3:";
Leer N3;
Escribir Sin Saltar "Ingresa el valor de N4:";
Leer N4;
R1 <- (N1+N2)*(N3+N4);
Escribir "Valor de R1: ", R1;
FinProceso
Escribir Sin Saltar "Ingresa el valor de N1:";
Leer N1;
Escribir Sin Saltar "Ingresa el valor de N2:";
Leer N2;
Escribir Sin Saltar "Ingresa el valor de N3:";
Leer N3;
Escribir Sin Saltar "Ingresa el valor de N4:";
Leer N4;
R1 <- (N1+N2)*(N3+N4);
Escribir "Valor de R1: ", R1;
FinProceso