<meta charset="UTF-8">
<script>
function pulaLinha() {
document.write("<br>");
}
function mostra(frase) {
document.write(frase);
pulaLinha();
pulaLinha();
}
var numeroPensado = Math.round(Math.random() * 10);
var tentativas = 1;
while(tentativas <= 3) {
var chute = parseInt(prompt("Já pensei. Qual numero voce acha que é?"));
if(chute == numeroPensado) {
mostra("Uau, você acertou!");
break;
} else {
mostra("Você errou.");
}
tentativas++;
}
</script>