Created
June 19, 2026 16:00
-
-
Save Kiuren/d46d88c80809a403566291d5f18d20fa 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 ejercicio1 | |
| Definir numero, contador Como Entero | |
| numero = 3 | |
| contador = 0 | |
| Mientras numero <= 100 Hacer | |
| Imprimir numero | |
| contador = contador + 1 | |
| numero = numero + 3 | |
| FinMientras | |
| Imprimir "Cantidad de múltiplos de 3 entre 1 y 100 seria: ", contador | |
| FinAlgoritmo | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment