<meta charset="UTF-8">
<script>
function pulaLinha() {
document.write("<br>");
document.write("<br>");
}
function mostra(frase) {
document.write(frase);
pulaLinha();
}
var numeroPensado = Math.round(Math.random() * 10);
var tentativas = 1;
while(tentativas <= 2) {
var chute = parseInt(prompt("Digite seu chute aqui!"));
if(chute == numeroPensado) {
mostra("Você ACERTOU!, o numero Pensado foi:");
break
} else {
mostra("Você ERROU! Tente novamente! ");
}
tentativas++;
}
mostra ("FIM");
</script>