let numeroPar = 1;
while (numeroPar <= 100){
if ((numeroPar % 2) == 0){
imprimir("Es par: " + numeroPar);
}
numeroPar++;
}
let numeroPar = 1;
while (numeroPar <= 100){
if ((numeroPar % 2) == 0){
imprimir("Es par: " + numeroPar);
}
numeroPar++;
}
Hola es interesante la formulacion de tu codigo, pero no me ejecuta , y si ejecutara tampoco responde el ejercicio por que ahi no te va a imprimir los pares hasta el 100.
Hola, buen día
la verdad probé el código y si me funciono, es que olvide incluir la función de imprimir disculpa :P. incluyo el código completo, espero te funcione.
Gracias por el aporte.
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
let numeroPar = 1;
while (numeroPar <= 100){
if ((numeroPar % 2) == 0){
imprimir("Es par: " + numeroPar);
}
numeroPar++;
}
</script>