From e06df41999739e686d423a528bedad1fa43c95a9 Mon Sep 17 00:00:00 2001 From: Sergio Madera De Marco <37299705@terciariourquiza.edu.ar> Date: Tue, 28 Apr 2026 19:40:54 -0300 Subject: [PATCH] punto 5: multiplos de 3 con for --- ejercicios.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ejercicios.js b/ejercicios.js index 3ee0fca..179f1b4 100644 --- a/ejercicios.js +++ b/ejercicios.js @@ -28,4 +28,12 @@ while (numero < maximo) { console.log(numero); } numero++; +} +// Punto 5 +let maximo2 = 15; + +for (let i = 1; i < maximo2; i++) { + if (i % 3 === 0) { + console.log(i); + } } \ No newline at end of file