<meta charset="UTF-8">
<script>
function pulalinha() {
document.write("<br><br>");
}
function mostra(frase) {
document.write(frase);
pulalinha();
}
function sorteia(n) {
return Math.round(Math.random() * n);
}
var numero = sorteia(10);
var tentativas = 1;
while(tentativas <= 3) {
var chute = parseInt(prompt("Digite o seu chute."));
if (chute == numero) {
mostra("Muito bem, você acertou! O numero é " + numero);
break;
} else {
mostra("Ops, você errou!");
}
tentativas++
}
</script>