<meta charset="utf-8">
<h1>PROGRAMA QUE IMPRIME NUMEROS PARES DEL 1 AL 100</h1>
<script>
function escribir(frase)
{
document.write(frase);
document.write("<br>");
}
var x = 1;
while(x <= 100)
{
if (x % 2 == 0)
{
escribir(x);
}
x++;
}
</script>