<meta charset="UTF-8">
<h1>PROGRAMA - NÚMEROS PARES</h1>
<br>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(frase){
document.write(frase);
saltarLinea();
}
var numeroMaximo = 100;
var numeroPar = 2;
while(numeroPar <= numeroMaximo){
imprimir(numeroPar);
numeroPar = numeroPar + 2;
}
</script>