function pulaLinha() {
document.write("<br><br>");
}
function mostra(frase){
document.write(frase);
pulaLinha();
}
var NumeroSecreto = Math.round(Math.random(1) * 100);
for( var tentativas = 1; tentativas <= 3; tentativas ++){
var chute = parseInt(prompt("Digite Seu Chute"))
if(chute == NumeroSecreto){
mostra("Voce Acertou Parabens")
break;
} else {
mostra("Voce Errou!! Tente Novamente" )
}
}