From 14691f271486b64134509fef108c300635e64584 Mon Sep 17 00:00:00 2001 From: Agustin Lautaro Moneta <46840139@terciariourquiza.edu.ar> Date: Thu, 7 May 2026 23:46:27 -0300 Subject: [PATCH] Ejercicio 4 hecho --- ejercicios.js | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/ejercicios.js b/ejercicios.js index 524bbf1..5063e60 100644 --- a/ejercicios.js +++ b/ejercicios.js @@ -3,14 +3,9 @@ console.log("Archivo vinculado exitosamente"); // Resolver acá los ejercicios propuestos. -const nombre = "Agustin"; -const edad = 20; -if (edad >= 18) { - console.log(nombre + " esta en su adultez"); -} -if (edad >= 13 && edad < 18) { - console.log(nombre + " esta en su adolescencia"); -} -if (edad < 13) { - console.log(nombre + " esta en su infancia"); -} \ No newline at end of file +const maximo = 15; +let numero = 0; +while (numero < maximo) { + console.log(numero); + numero += 3; +} \ No newline at end of file