-
Notifications
You must be signed in to change notification settings - Fork 0
/
meuSegredo2.html
84 lines (60 loc) · 1.51 KB
/
meuSegredo2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!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>Meu Segredo 2</title>
</head>
<body>
<input/>
<button>Compare com o meu segredo</button>
<script>
function sorteia() {
return Math.round(Math.random()*10);
}
function sorteiaNumeros(quantidade) {
var segredos = [];
var numero = 1;
while(numero <= quantidade) {
var numeroAletorio = sorteia();
if(numeroAletorio !== 0) {
var achou = false;
for(var posicao = 0; posicao < segredos.length; posicao++) {
if(segredos[posicao] == numeroAletorio) {
achou = true;
break
}
}
if(achou == false) {
segredos.push(numeroAletorio());
numero++;
}
}
}
return segredos
}
var segredos = sorteiaNumeros(3);
var input = document.querySelector("input");
input.focus();
function verifica() {
var achou = false;
for(var posicao = 0; posicao < segredos.length; posicao++) {
if(input.value == segredos[posicao]) {
alert("Você acertou!");
achou = true;
break
}
}
if(ahou == false){
alert("Você errou!")
}
alert("Você errou!")
input.value = "";
input.focus();
}
var button = document.querySelector("button");
button.onclick = verifica;
</script>
</body>
</html>