-
Lenguaje
PSeInt (Pseudocódigo)
-
Descripción
Pide tres número y muestra el mayor.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Proceso MayorDeTresNumeros
Escribir Sin Saltar "Ingresa el valor de a:";
Leer a;
Escribir Sin Saltar "Ingresa el valor de b:";
Leer b;
Escribir Sin Saltar "Ingresa el valor de c:";
Leer c;
mayor <- a;
Si mayor<b Entonces
mayor <- b;
FinSi
Si mayor<c Entonces
mayor <- c;
FinSi
Escribir "Valor de mayor: ", mayor;
FinProceso
Escribir Sin Saltar "Ingresa el valor de a:";
Leer a;
Escribir Sin Saltar "Ingresa el valor de b:";
Leer b;
Escribir Sin Saltar "Ingresa el valor de c:";
Leer c;
mayor <- a;
Si mayor<b Entonces
mayor <- b;
FinSi
Si mayor<c Entonces
mayor <- c;
FinSi
Escribir "Valor de mayor: ", mayor;
FinProceso