Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
2
respuestas

CÓDIGO PARA IMPRIMIR PARES DEL 1 AL 100

<script>
    function SkipLine() {
        document.write('<br><br>');
    }

    function print(frase) {
        document.write(frase);
        SkipLine();
    }

    let intialNumber = 1;

    while (intialNumber <= 100) {

        if (intialNumber % 2 == 0) {
            print(intialNumber);
        }

        intialNumber += 1;
    }

    print('FIN');
</script>
2 respuestas

¡Hola! Yo lo hice asíIngrese aquí la descripción de esta imagen para ayudar con la accesibilidad

Yo asi!

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Números pares del 1 al 100</title>
</head>
<body>
    <script>
        var numero = 1;
        while(numero <= 100) {
            if(numero % 2 == 0) {
                document.write(numero + "<br>");
            }
            numero++;
        }
        document.write("FIN");
    </script>
</body>
</html>