From 085cd5702b1973eea9a1418af67111459fcbf280 Mon Sep 17 00:00:00 2001 From: Bruno Date: Thu, 30 Apr 2026 22:06:32 -0300 Subject: [PATCH] Resolucion del 4to ejercicio --- ejercicios.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ejercicios.js b/ejercicios.js index aacffea..9efd6a3 100644 --- a/ejercicios.js +++ b/ejercicios.js @@ -18,4 +18,12 @@ if (edad < 13) { console.log("Estas en tu adolescencia"); } else { console.log("Estas en tu adultez"); +} + +let maximo = 15 +let inicio = 3 + +while (inicio < maximo) { + console.log(inicio); + inicio = inicio + 3 } \ No newline at end of file