feat(aula1): implementa logica teste 3 #1
27
Aula1.html
27
Aula1.html
@ -60,7 +60,32 @@
|
||||
<p>
|
||||
uma array contendo 40 numeros aleatórios, retornar somente os números
|
||||
pares divisíveis por 5, faça isso em javascript.
|
||||
<!--
|
||||
1-criar array 40 numeros aleatorios
|
||||
2-logica percorrer elementos para descobrir quais elementos sao pares
|
||||
3-logica percorrer elementos para descobrir quais elementos sao divisiveis por 5-->
|
||||
</p>
|
||||
<script></script>
|
||||
<script>
|
||||
function paresDiv5() {
|
||||
let numeros = [];
|
||||
let NumParesDiv5 = [];
|
||||
|
||||
for(let i = 0; i < 40; i++){
|
||||
let numero = Math.floor(Math.random() * 100);
|
||||
numeros.push(numero);
|
||||
|
||||
}
|
||||
|
||||
for(let i = 0; i < numeros.length; i++){
|
||||
if(numeros[i] % 2 === 0 && numeros[i] % 5 === 0){
|
||||
NumParesDiv5.push(numeros[i]);
|
||||
}
|
||||
}
|
||||
|
||||
console.log(NumParesDiv5);
|
||||
|
||||
}
|
||||
paresDiv5();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user