Created
July 11, 2026 01:21
-
-
Save Kiuren/b498aa69802f815cda17e76394867d1e to your computer and use it in GitHub Desktop.
Creado con PseInt Web
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Algoritmo ejercicio | |
| Definir n, i, numero Como Entero | |
| Imprimir "¿Cuántos numeros deseas introducir?" | |
| Leer n | |
| i <- 1 | |
| Mientras i <= n Hacer | |
| Imprimir "Introducir el numero ", i, ":" | |
| Leer numero | |
| Si numero = 10 Entonces | |
| Imprimir "El numero ", numero, " es mayor que 10." | |
| Sino | |
| Si numero = 10 Entonces | |
| Imprimir "El numero ", numero, " es menor que 10." | |
| Sino | |
| Imprimir "El numero ", numero, " es igual a 10." | |
| FinSi | |
| FinSi | |
| i <- i + 1 | |
| FinMientras | |
| FinAlgoritmo | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment