1
resposta

[Projeto] Jogo de Adivinhação.

<meta charset="UTF-8">
<script>

function jumpline() {
    document.write("<br>");
}
function show(text) {
    document.write(text);
    jumpline();
}
function raffle(x) {
    return Math.round(Math.random() * x);
}
var rafflenumber = raffle(100);
console.log(rafflenumber);
var attempts = 5
while(attempt != rafflenumber && attempts >= 1) {
    var attempt = parseInt(prompt("É um número de 0 à 100, fácil... kkkkkkkk. Ainda há " + attempts + " chances de acerto."));
if (attempt == rafflenumber) { 
    alert("Você conseguiu realizar o que era improvavél, meus parabéns!");
} else 
{ 
    alert("Errou.");
}

    attempts = attempts - 1;
}
if (attempts < 1) { alert("Infelizmente, você não conseguiu.");
}

</script>
1 resposta

Olá, Renan, tudo bem?

Testei o seu código e ele está funcionando certinho, a estrutura e apresentação dele está bem construída, organizada e endentada, parabéns!

Caso surja dúvidas, não hesite em compartilhar no fórum.

Grande abraço e até mais!