-
Notifications
You must be signed in to change notification settings - Fork 0
/
desafio4-nrRand.html
59 lines (50 loc) · 1.98 KB
/
desafio4-nrRand.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
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Desafio 4-7 / Loops e Randomização em Javascript</title>
</head>
<body>
#7DaysOfCode <br>
Rafa Ballerini <br>
Instrutora Front-End na Alura <br>
Loops e Randomização em Javascript <br>
<br>
<hr><br>
<script>
// var nr = 7;
const nrRand = Math.floor(Math.random() * (10 - 0 + 1) + 0);
let chute = "";
let acertou = false;
for (let contador = 1; contador < 4; contador++) {
chute = prompt("Tente adivinhar o número de 0 a 10: \nVocê tem 3 Tentativas, essa é sua " + [contador] + "ª");
// Enquanto o chute não for um valor de 0 a 10
while (10 < chute || chute < 0 || chute == "") {
alert("O número deve ser de 0 a 10, tente novamente!")
chute = prompt("Tente adivinhar o número de 0 a 10: \nVocê tem 3 Tentativas, essa é sua " + [contador] + "ª");
}
// Se chute for IGUAL o número sorteado
if (chute == nrRand) {
alert(`Parabéns, você acertou! O número era ${nrRand}.`);
acertou = true;
break;
}
// Se chute for MENOR que o número sorteado
else if (chute < nrRand) {
alert("Errou! é maior que: " + [chute])
}
// Se chute for MAIOR que o número sorteado
else if (chute > nrRand) {
alert("Errou! é menor que: " + [chute])
}
alert("Essa foi sua " + [contador] + "ª tentativa ");
}
// Se perder as 3 tentativas
if (!acertou) {
alert("O número sorteado era: " + [nrRand] + " \nvocê atingiu as 3 tentativas!")
}
</script>
</body>
</html>