Created
July 24, 2026 17:46
-
-
Save Kiuren/0cefec93c9c8b2de52466551fa6729e2 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 inicio, final, l, e, contador Como Entero | |
| Escribir "Ingrese el número inicial:" | |
| Leer inicio | |
| Escribir "Ingrese el número final:" | |
| Leer final | |
| contador = 0 | |
| i = inicio | |
| l = final | |
| Mientras i <= l Hacer | |
| Si i % 3 = 0 Entonces | |
| Si contador % 2 = 0 Entonces | |
| Escribir i | |
| FinSi | |
| contador = contador + 1 | |
| FinSi | |
| i = i + 1 | |
| FinMientras | |
| FinAlgoritmo | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment