Skip to content

Instantly share code, notes, and snippets.

@Kiuren
Created June 19, 2026 16:00
Show Gist options
  • Select an option

  • Save Kiuren/d46d88c80809a403566291d5f18d20fa to your computer and use it in GitHub Desktop.

Select an option

Save Kiuren/d46d88c80809a403566291d5f18d20fa to your computer and use it in GitHub Desktop.
Creado con PseInt Web
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