From 8cce3bad3dcb11618e03bac6df4681559ae42c50 Mon Sep 17 00:00:00 2001 From: Bruno Date: Thu, 30 Apr 2026 22:07:19 -0300 Subject: [PATCH] Resolucion del 5to ejercicio --- ejercicios.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ejercicios.js b/ejercicios.js index 9efd6a3..63984f4 100644 --- a/ejercicios.js +++ b/ejercicios.js @@ -26,4 +26,10 @@ let inicio = 3 while (inicio < maximo) { console.log(inicio); inicio = inicio + 3 +} + +maximo = 45 + +for (let numero = 3; numero < maximo; numero = numero + 3) { + console.log(numero); } \ No newline at end of file