<meta charset="UTF-8">
<script>
function pularLinha ( ) {
document.write ( "<br>" );
}
function msg ( texto, type ) {
if ( type == "alert" ) {
alert ( texto );
} else {
document.write ( texto );
pularLinha ( );
}
}
function parabens ( ) {
for ( i = 0; i <= 10; i++ ) {
for ( i1 = 0; i1 <= 30; i1++ ) {
document.write ( "*" );
}
pularLinha ( );
}
}
var numeroAleatorio = Math.round ( Math.random ( ) * 10 );
console.log ( numeroAleatorio );
var tentativas = 1;
var maxTentativas = 3;
var chute = parseInt ( prompt ( "Informe seu chute de 0 a 10!" ) );
while ( tentativas <= maxTentativas ) {
if ( chute == numeroAleatorio ) {
msg ( "* Parabens, você acertou!", "alert" );
parabens ( );
break;
} else {
tentativas++;
if ( tentativas > maxTentativas ) {
msg ( "* Suas chances acabaram, o resultado era " + numeroAleatorio + "!", "alert" );
} else {
msg ( "* Você errou, tente novamente!", "alert" );
chute = parseInt ( prompt ( "Informe seu chute de 0 a 10!" ) );
}
}
}
</script>