1
resposta

ficou bom

<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

</head><body><input>
<button>compare com o meu segredo</button>

<script>

   function sorteia() {

     return Math.round(Math.random() * 10);

   }

   function sorteiaNumeros(quantidade) {

      var segredos = [];

      var numero = 1;  

      while(numero <= quantidade) {

            var numeroAleatorio = sorteia();

            if(numero aleatorio !== 0 ) 

                 var achou = false;

                for(var posição = 0; posição < segredos.length; posição++) {

                if(segredos[posição] == numeroAleatorio) {
                      achou = true;
                      break;

              }


            if(achou == false) {
                segredos.push(numeroAleatorio);
                numero++;

              }
          }
      }

      return segredos;
  }

var segredos = sorteiaNumeros(5);

var input = document.querySelector("input");
input.focus();

function verifica() {

    var achou = false;

    for(var posição = 0; posição < segredos.length; posição++) {

        if (input.value == segredos[posição]) { 

            alert("você ACERTOU!");
            achou = true;
             break;
         }

     }

     if(achou == false) {

      alert("você ERROU!");
   }

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

  var button = document.querySelector("button");

  button.onclick = verifica;

</script>  </body></html>
foi mal pelo erro
1 resposta

Oi Igor

Para compartilhar o código você precisa utilizar a ferramenta </> (inserir bloco de código) aqui do editor e inserir o código entre as crases.

Parabéns pelo empenho nos estudos!

Continue praticando e qualquer dúvida pode contar com a gente.