Created
June 19, 2026 17:22
-
-
Save Kiuren/12eadc3b9b72ee664a6927d7b69e3b92 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 ejercicio3 | |
| Definir i, contador Como Entero | |
| i = 5 | |
| contador = 0 | |
| Mientras i <= 500 Hacer | |
| Imprimir i | |
| contador = contador + 1 | |
| i = i + 5 | |
| FinMientras | |
| Imprimir "Cantidad de múltiplos de 5 entre 1 y 500 es: ", contador | |
| FinAlgoritmo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment