-
Lenguaje
PSeInt (Pseudocódigo)
-
Descripción
Solicite 10 números al usuario y mostrar cuantos de ellos son mayores a 100.
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
Proceso MayoresA100
mayores_que_100 <- 0;
Para i<-1 Hasta 10 Con Paso 1 Hacer
Escribir "PROCESO ", i;
Escribir Sin Saltar "Ingresa el valor de un numero:";
Leer un_numero;
Si un_numero>100 Entonces
mayores_que_100 <- mayores_que_100+1;
FinSi
Escribir "";
FinPara
Escribir "Valor de mayores que 100: ", mayores_que_100;
FinProceso
mayores_que_100 <- 0;
Para i<-1 Hasta 10 Con Paso 1 Hacer
Escribir "PROCESO ", i;
Escribir Sin Saltar "Ingresa el valor de un numero:";
Leer un_numero;
Si un_numero>100 Entonces
mayores_que_100 <- mayores_que_100+1;
FinSi
Escribir "";
FinPara
Escribir "Valor de mayores que 100: ", mayores_que_100;
FinProceso