Created
November 6, 2014 13:12
-
-
Save washingtonsoares/820b69ce77a99c1c34b7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<meta charset="UTF-8"> | |
<input type="text" id="numero"/> | |
<input type="submit" value="adicione e verifique no bingo!" id="adivinhar"/> | |
<script> | |
var sorteados = new Array(); | |
var nrosUsuario = new Array(); | |
var numerosSorteados= function(){ | |
var n1= Math.floor(Math.random() * 60); | |
var n2= Math.floor(Math.random() * 60); | |
var n3= Math.floor(Math.random() * 60); | |
var n4= Math.floor(Math.random() * 60); | |
var n5= Math.floor(Math.random() * 60); | |
var n6= Math.floor(Math.random() * 60); | |
sorteados=[n1,n2,n3,n4,n5,n6]; | |
}; | |
numerosSorteados(); | |
console.log(sorteados); | |
var size = sorteados.length; | |
var pega_numeros_usuario = function (){ | |
for (var i = 0; i < size; i++) { | |
nro = prompt("digite um numero"); | |
nrosUsuario.push(nro); | |
} | |
} | |
pega_numeros_usuario(); | |
console.log(nrosUsuario); | |
var quantidade_acertos=0; | |
for (i = 0; i < size; i++) { | |
if(sorteados[i] == nrosUsuario[i]){ | |
quantidade_acertos++; | |
} | |
} | |
if(quantidade_acertos == sorteados.length){ | |
alert("vocẽ acertou todos"); | |
}else if(quantidade_acertos == 0){ | |
alert("você não acertou nenhum!"); | |
}else{ | |
alert("você acertou "+ quantidade_acertos); | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment