Created
June 19, 2026 16:50
-
-
Save Kiuren/4dea0c57766869ba451837c656ecca16 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 ejercicio2 | |
| Definir i, n Como Entero | |
| i = 1 | |
| n = 0 | |
| Mientras i <= 100 Hacer | |
| i = 1 + n | |
| n = i + 2 | |
| FinMientras | |
| Imprimir "La suma de los números impares entre 0 y 100 seria: ", n | |
| FinAlgoritmo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment