Estructura repetitiva (while)

PROBLEMA

  1. Realizar un programa que imprima 25 términos de la serie 11 - 22 - 33 - 44, etc. (No se ingresan valores por teclado).
  2. Mostrar los múltiplos de 8 hasta el valor 500. Debe aparecer en pantalla 8 -16 -24, etc.
Solución
Problema 1.


<html>
<head>
</head>
<body>

<script type="text/javascript">
  var serie;
  serie=11;
  var x;
  x=1;
  while (x<=25)
  {
    document.write(serie);
    document.write('<br>');
    x=x+1;
    serie=serie+11;
  }
</script>

</body>
</html>
     


Problema 2.


<html>
<head>
</head>
<body>

<script type="text/javascript">
  var multiplo8;
  multiplo8=8;
  while (multiplo8<=500)
  {
    document.write(multiplo8);
    document.write('<br>');
    multiplo8=multiplo8+8;
  }
</script>

</body>
</html>
     


Retornar al menu