Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
1
respuesta

Juego Secreto

 <center>
      <h1>Juego Secreto</h1>
    </center>

    <!------------------------>

    <input />

    <button>Verificar si acerto con el secreto</button>

    <!-------------------------------------->

    <script>
      ///------------------///
      var secreto = Math.round(Math.random() * 10);
      var input = document.querySelector("input");
      input.focus();

      function verificar() {
        if (parseInt(input.value) == secreto) {
          alert("Usted acerto");
        } else {
          alert("Usted erró");
        }

        input.value = "";
        input.focus();
      }

      var button = document.querySelector("button");
      button.onclick = verificar;
      //-------------------///
    </script>
1 respuesta

saludos, a mi me quedó así:

<meta charset="UTF"-8>
<H1>PROGRAMA DE JUEGO SECRETO</H1>

<input/>

<BUTton> Verifica si acertó con el SECRETO</BUTton>


<SCRIpt>

    var secreto = Math.round(Math.random()*10);
    var input = document.querySelector("input");
    input.focus();

    function verificar(){

    if (parseInt(input.value) == secreto){
        alert("Usted acertó");

    }
    else{
        alert("usted erró");
    }
    input.value= "";
    input.focus();
}
var button = document.querySelector("button");
button.onclick = verificar;


</SCRIpt>