<!DOCTYPE html>
<html lang="en">
<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>Document</title>
</head>
<body>
<h1>Programa para imprimir numeros pares del 0 a 100 </h1>
<script>
//Inicio definicion de Funciones
function saltarLinea() {
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
//Fin definicion de funciones
//Inicio de programa
//Inicializando acumulador en 0
var numeroPar = 0
imprimir("Los números pares que hay entre el 1 y el 100 son: ");
//Colocando el ciclo While con su condicion
while(numeroPar <=100) {
imprimir(numeroPar);
numeroPar = numeroPar + 2 //Realizando la acumulacion
}
imprimir("FIN");
</script>
</body>
</html>