1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Proceso algoritmo1
    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