-
Notifications
You must be signed in to change notification settings - Fork 0
/
desafio4-nrFixo.html
50 lines (42 loc) · 1.6 KB
/
desafio4-nrFixo.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
<!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>
const nrFixo = 7;
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 fixo
if (chute == nrFixo) {
alert(`Parabéns, você acertou! O número era ${nrFixo}.`);
acertou = true;
break;
}
// Se errar o chute
alert("Errou! Essa foi sua " + [contador] + "ª tentativa ");
}
// Se perder as 3 tentativas
if (!acertou) {
alert(`Infelizmente, você não acertou. O número era ${nrFixo}!`);
}
</script>
</body>
</html>