forked from caroline_moran/algoritmos-para-estudar
82 lines
2.4 KiB
HTML
82 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<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>Document</title>
|
|
</head>
|
|
<body>
|
|
<p>TESTE 1</p>
|
|
<p>
|
|
Um texto tem 20 dígitos , a cada 2 dígitos tem um número 0 , os dígitos
|
|
são letras aleatórias , faça isso com javascript.
|
|
<!-- 1. length: 20
|
|
2. aleatório: Math.random e intervalo de A a Z
|
|
3. substituir o digito a cada 2 digitos por 0
|
|
4. transformar o array em string-->
|
|
</p>
|
|
<script>
|
|
const generateRandomString = () => {
|
|
let arrLetras = [];
|
|
const characters =
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
|
|
for (let i = 0; i < 20; i++) {
|
|
let num = Math.floor(Math.random() * characters.length);
|
|
let letra = characters.charAt(num);
|
|
if ((i + 1) % 3 == 0) {
|
|
letra = 0;
|
|
}
|
|
arrLetras.push(letra);
|
|
}
|
|
console.log(arrLetras.join(""));
|
|
};
|
|
generateRandomString();
|
|
</script>
|
|
<p>TESTE 2</p>
|
|
<p>
|
|
Um dia tem 24 horas, quantos segundos tem em uma semana? faça em
|
|
javascript
|
|
<!--
|
|
1. quantos segundos tem em 24 horas
|
|
2. multiplicar o resultado acima por 7
|
|
-->
|
|
</p>
|
|
<script>
|
|
function calcular() {
|
|
const horas = 24;
|
|
const minutos = 60;
|
|
const segundos = 60;
|
|
const segundosHora = minutos * segundos;
|
|
const segundosDia = 24 * segundosHora;
|
|
const resultado = segundosDia * 7;
|
|
`Uma hora tem ${segundosHora} segundos. Um dia tem ${segundosDia} segundos. Uma semana tem ${resultado} segundos`;
|
|
}
|
|
calcular();
|
|
</script>
|
|
<p>TESTE 3</p>
|
|
<p>
|
|
uma array contendo 40 numeros aleatórios, retornar somente os números
|
|
pares divisíveis por 5, faça isso em javascript.
|
|
</p>
|
|
<script>
|
|
// array
|
|
// 40 length
|
|
// radom numbers
|
|
// return par / 5
|
|
function paresPor5() {
|
|
const numbers = [];
|
|
const pares5 = []
|
|
for (let i = 0; i < 40; i++) {
|
|
let numb = Math.floor(Math.random() * 100)
|
|
if (numb % 2 === 0 && numb % 5 === 0) {pares5.push(numb)}
|
|
numbers.push(numb);
|
|
};
|
|
//console.log(numbers);
|
|
return pares5;
|
|
}
|
|
paresPor5();
|
|
</script>
|
|
</body>
|
|
</html>
|