<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Uso del While</title>
<h1 align="center">PROGRAMA PARA CALCULAR LOS NUMEROS PARES DEL 1 AL 100</h1>
<hr>
</head>
<body>
<center>
<script>
function saltarLinea() {
document.write("<br><br><br>");
}
function imprimir(texto) {
document.write(texto);
}
saltarLinea();
var contador = 2;
while(contador <= 100){
if((contador % 2) == 0) {
imprimir(contador+", ");
}
contador++;
}
imprimir("Fin.");
</script>
</center>
</body>
</html>