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.


<!DOCTYPE html>
<html>

<head>
    <title>Ejemplo de JavaScript</title>
    <meta charset="UTF-8">
</head>

<body>

    <script>
        let serie;
        serie = 11;
        let x;
        x = 1;
        while (x <= 25) {
            document.write(serie);
            document.write('<br>');
            x = x + 1;
            serie = serie + 11;
        }
    </script>

</body>

</html>

   

Problema 2.


<!DOCTYPE html>
<html>

<head>
    <title>Ejemplo de JavaScript</title>
    <meta charset="UTF-8">
</head>

<body>

    <script>
        let multiplo8;
        multiplo8 = 8;
        while (multiplo8 <= 500) {
            document.write(multiplo8);
            document.write('<br>');
            multiplo8 = multiplo8 + 8;
        }
    </script>

</body>

</html>



Retornar al menu