-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjogo_adivinha.html
47 lines (35 loc) · 1023 Bytes
/
jogo_adivinha.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<meta charset="UTF-8">
<script>
function pulaLinha()
{
document.write("<br>");
document.write("<br>");
}
function mostra(frase)
{
document.write(frase);
pulaLinha();
}
function sorteia(n) {
return Math.round(Math.random()*n);
}
var numeroMaximo = parseInt(prompt("Digite um numero máximo para o sorteio."));
var numeroSorteado = sorteia(numeroMaximo);
var tentativa = 1;
var chute = 0;
while (tentativa <= 3)
{
var chute = parseInt(prompt("Digite seu chute entre 0 e " + numeroMaximo + "."));
if (chute == numeroSorteado)
{
mostra("Você chutou " + chute + " e acertou! Número sorteado = " + numeroSorteado);
break;
}
else
{
mostra("Você chutou " + chute + " e errou! ");
}
tentativa ++;
}
mostra("Obrigado, atualize o navegador para iniciar o jogo novamente!");
</script>