-
Lenguaje
PSeInt (Pseudocódigo)
-
Descripción
Clásico ¡Hola mundo! con ciclo.
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
Proceso HolaMundoConCiclo
Repetir
Escribir "!Hola mundo!";
Escribir "";
Repetir
Escribir Sin Saltar "¿Deseas repetir el proceso? (S/N):";
Leer tecla_repetir;
Hasta Que tecla_repetir='s' O tecla_repetir='n' O tecla_repetir='S' O tecla_repetir='N'
Hasta Que tecla_repetir='n' O tecla_repetir='N'
FinProceso
Repetir
Escribir "!Hola mundo!";
Escribir "";
Repetir
Escribir Sin Saltar "¿Deseas repetir el proceso? (S/N):";
Leer tecla_repetir;
Hasta Que tecla_repetir='s' O tecla_repetir='n' O tecla_repetir='S' O tecla_repetir='N'
Hasta Que tecla_repetir='n' O tecla_repetir='N'
FinProceso