<meta charset="UTF-8">
<h1>Programa-calcular numeros pares </h1>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
document.write("<hr>");
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write("<big>" + frase + "</big>");
saltarLinea();
}
var numeroPar = 2;
while ( numeroPar <= 100 ) {
imprimir (numeroPar)
var numeroPar = numeroPar + 1
numeroPar++
}