• Lenguaje

    PSeInt (Pseudocódigo)

  • Descripción

    Calcular el mayor de 5 números, hacer proceso 10 veces.

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
Proceso MayorDe5Numeros10Veces
    Para i<-1 Hasta 10 Con Paso 1 Hacer
        Escribir "PROCESO ", i;
        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;
        Escribir Sin Saltar "Ingresa el valor de d:";
        Leer d;
        Escribir Sin Saltar "Ingresa el valor de e:";
        Leer e;
        Si a>b Entonces
            mayor <- a;
        SiNo
            mayor <- b;
        FinSi
        Si mayor<c Entonces
            mayor <- c;
        FinSi
        Si mayor<d Entonces
            mayor <- d;
        FinSi
        Si mayor<e Entonces
            mayor <- e;
        FinSi
        Escribir "Valor de mayor: ", mayor;
        Escribir "";
    FinPara
FinProceso