<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Numeros pares</title>
</head>
<body>
<h1>PROGRAMA - PARA CALCULAR NÚMERO PARES</h1>
<script>
function saltarLinea(){
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir (frase){
document.write(frase);
saltarLinea();
}
imprimir ("<strong>Los números pares del 1 al 100 : </strong> ");
var numeroInicio = 2;
while(numeroInicio <= 100){
imprimir(numeroInicio);
numeroInicio = numeroInicio +2;
}
imprimir("FIN")
</script>
</body>
</html>