<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>