algoritmos-para-estudar-rod.../Aula3.html

54 lines
1.6 KiB
HTML
Raw Normal View History

2022-10-29 12:06:06 +00:00
<!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.
</p>
2022-10-29 15:26:06 +00:00
<script>
let array = [];
let indice = 0;
const letras = ["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"
,"A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"];
for(let j = 0;j < 20; j++){
indice = Math.floor(Math.random()* letras.length);
array[j] = letras[indice];
if(j % 3 == 0){
array[j] = "0";
}
2022-10-29 15:26:06 +00:00
}
let string = array.join("");
console.log(string);
</script>
2022-10-29 12:06:06 +00:00
<p>TESTE 2</p>
<p>
Um dia tem 24 horas, quantos segundos tem em uma semana? faça em
javascript
</p>
2022-10-29 15:26:06 +00:00
<script>
console.log(24*60*60*7);
</script>
2022-10-29 12:06:06 +00:00
<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>
2022-10-29 15:26:06 +00:00
<script>
let a = [];
for(let i = 0;i < 40; i++){
a[i] = Math.floor(Math.random() * 100);
if(a[i] % 2 == 0 && a[i] % 5 == 0 && a[i] != 0){
console.log(a[i]);
}
}
</script>
2022-10-29 12:06:06 +00:00
</body>
</html>