2
respostas

Jogo Adivinha

Fiz e alterei para dar alerta quando erra ,avisando a quantidade de chances restantes.

<meta charset="UTF-8">


<script>

function pulalinha()
{
    document.write("<br><hr><br>");
}

function mostra(frase)
{
    document.write("<big>"+frase+"</big>");
    pulalinha();
}

function titulo(frase)
{
    document.write("<h1>"+frase+"</h1>");
}

function sorteia(n)
{
    return  Math.round(Math.random() * n);
}

 var numeroPensado = sorteia(10);
 var tentativas =1
 var chances = 3

 titulo ("Adivinhe o numero que pensei!!")

 while (tentativas <=chances)
 {
         var chute = parseInt(prompt("Já pensei. Qual você acha que é?"));

        if(chute == numeroPensado) 
        {

            mostra("Uau! Você acertou, pois eu pensei no " + numeroPensado);
            break;

        }
        else {
             if (tentativas <chances)
             {
                 alert("Você errou Tente Novamente, voce tem mais " +(chances -tentativas )+ " tentativas")
             }

            else
            {
             mostra("Você errou!")
            }

        }
    tentativas++
 }


</script>
2 respostas

terminei assim.

<meta charset="UTF-8">


<script>

function pulalinha()
{
    document.write("<br><hr><br>");
}

function mostra(frase)
{
    document.write("<big>"+frase+"</big>");
    pulalinha();
}

function titulo(frase)
{
    document.write("<h1>"+frase+"</h1>");
}

function sorteia(n)
{
    return  Math.round(Math.random() * n);
}

 var numeroPensado = sorteia(10);
 var tentativas =1
 var chances = 3

 titulo ("Adivinhe o numero que pensei!!")

 var nome =prompt("Digite seu nome")

 while (tentativas <=chances)
 {
         var chute = parseInt(prompt(nome+"! Já pensei em um numero. Qual você acha que é?"));

        if(chute == numeroPensado) 
        {

            mostra("Uau! "+ nome + " você acertou, pois eu pensei no " + numeroPensado);
            break;

        }
        else {
             if (tentativas <chances)
             {
                 alert("Você errou Tente Novamente, " + nome +" você tem mais " +(chances -tentativas )+ " tentativas")
             }

            else
            {
             mostra("Você errou!")
            }

        }
    tentativas++
 }


</script>

Legal cara, uma maneira boa de aprender é modificando o que foi apresentado em aula. Ajuda e fixar.