<meta charset="UTF-8">
<h4>PROGRAMA - PARA IMPRIMIR NUMEROS PARES DEL 1 AL 100 </h4>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
var numeroPares = 2;
while (numeroPares <= 100) {
imprimir("Los numeros pares del 1 al 100 son: " + numeroPares);
numeroPares = numeroPares + 2;
}
imprimir("Fin");
</script>