Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Solucionado (ver solución)
Solucionado
(ver solución)
4
respuestas

Mundial de Futbol

<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Fifa</title>
  </head>
  <body>
    <h1>Mundiales de Fifa</h1>
  </body>
  <script>
    function saltarLinea() {
      document.write("<br>");
      document.write("<br>");
      document.write("<br>");
    }

    function imprimir(frase) {
      document.write(frase);
      saltarLinea();
    }
    var anhoMundial = 1930;
    var limite = parseInt(prompt("Ingrese El año limite para calcular "));

    while (anhoMundial <= limite) {
      imprimir("Hubo mundial de FIFA en el año " + anhoMundial);
      anhoMundial = anhoMundial + 4;
    }
    imprimir("Fin");
  </script>
</html>
4 respuestas
solución!

Hola Julian, me gustó la descripción del encabezado con el "head" y el cuerpo "body". Muchas gracias por compartir.

Hola Jorge, si usas VSCode, y creas una pagina html, tienes una funcionalidad que al escribir html:5, te genera el esqueleto de un html completo.

excelente, vamos por las buenas prácticas en nuestro código saludos

<meta charset="utf-8">

<h1>PROGRAMA AÑO MUNDIAL DE LA FIFA</h1>
<script>
    function saltarLinea() {
        document.write("<br>");
        document.write("<br>");
        document.write("<br>");
    }

    function imprimir(frase) {
        document.write(frase);
        saltarLinea();
    }

    var anhoMundial = 1930;
    var limite = parseInt(prompt("Ingrese el año limite para calcular"))

    imprimir("Hubo mundial de la FIFA en el año 1930");
    while (anhoMundial <= limite) {
        anhoMundial = anhoMundial + 4;

        if (anhoMundial == 1942 || anhoMundial == 1946) {
            continue;
        }

        else {
            imprimir("Hubo mundial de la FIFA en el año " + anhoMundial);
        }

    }

    alert("fin")

</script>