<meta charset="UTF-8">
<h1>Sejam bem vindos</h1>
<h2> Consolidando meus conhecimentos</h2>
<script>
function pulaLinha() {
document.write("<br>");
document.write("<br>");
}
function mostra(frase) {
document.write(frase);
pulaLinha();
}
var numeroPensado = Math.round(Math.random() * 4);
var tentativas = 1;
while(tentativas <= 3) {
var chute = parseInt(prompt("Digite seu chute!"));
if(chute == numeroPensado) {
mostra("Você ACERTOU, o numero pensado era " + numeroPensado);
break;
} else {
mostra("Você ERROU!");
}
tentativas++;
}
mostra("FIM");
</script>