Compare commits

..

1 Commits

Author SHA1 Message Date
Caroline Moran
ff06bfade6 feat(algoritmos):resultados aula 2 e 3 2022-10-29 12:07:16 -04:00
3 changed files with 71 additions and 43 deletions

View File

@ -17,21 +17,19 @@
4. transformar o array em string-->
</p>
<script>
const getRandomNumber = (length) => Math.floor(Math.random() * length);
const generateRandomString = () => {
let palavra = '';
let arrLetras = [];
const characters =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
for (let i = 1; i <= 20; i++) {
const num = getRandomNumber(characters.length);
for (let i = 0; i < 20; i++) {
let num = Math.floor(Math.random() * characters.length);
let letra = characters.charAt(num);
if (i % 3 == 0) {
if ((i + 1) % 3 == 0) {
letra = 0;
}
palavra += letra;
arrLetras.push(letra);
}
console.log(palavra);
console.log(arrLetras.join(""));
};
generateRandomString();
</script>
@ -45,47 +43,24 @@
-->
</p>
<script>
function weekHours() {
const horas = 3600 * 24 * 7;
function calcular() {
const horas = 24;
const minutos = 60;
const segundos = 60;
const segundosHora = minutos * segundos;
const segundosDia = 24 * segundosHora;
const resultado = segundosDia * 7;
console.log(
`Uma semana tem ${horas}`
`Uma hora tem ${segundosHora} segundos. Um dia tem ${segundosDia} segundos. Uma semana tem ${resultado} segundos`
);
}
weekHours();
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>
const fillArray = (length) => {
const array = [];
for(let i = 0; i < length; i++){
const randomNumber = getRandomNumber(100); // gera número aleatórios entre 0 e 100
array.push(randomNumber);
}
return array;
}
const evenFiveDivisible = (array) => {
console.log(array, "Array dado");
for(let i = 0; i < array.length; i++){
const e = array[i];
if(!(e % 2 === 0 ) || !(e % 5 === 0)){
array.splice(i, 1);
i--;
}
}
return array;
};
console.log(evenFiveDivisible(fillArray(40)), "Array retornado");
</script>
<script></script>
</body>
</html>

View File

@ -11,8 +11,33 @@
<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. criar array
2. lenght: 20
3. gerar letras array
4. Math.random aleatorio
5. loop pra gerar 20 letras;
6. trocar os digitos a cada dois digitos por 0;
7. transformar o array em texto;
-->
</p>
<script></script>
<script>
function transformaTexto() {
let texto = [];
let alfabeto = "abcdefghijklmnopqrstuvxywzABCDEFGHIJKLMNOPQRSTUVXYWZ";
for (let i = 0; i < 20; i++) {
let indice = Math.floor(Math.random() * alfabeto.length);
let caracter = alfabeto.charAt(indice);
console.log(caracter);
if ((i + 1) % 3 === 0) {
caracter = 0;
}
texto.push(caracter);
}
console.log(texto.join(""));
}
transformaTexto();
</script>
<p>TESTE 2</p>
<p>
Um dia tem 24 horas, quantos segundos tem em uma semana? faça em

View File

@ -11,8 +11,36 @@
<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.criar a variavel array
2. length = 20
3. gerar as letras aleatórias:
3.1 gerar o indice da letra
3.2 gerar a letra
3.3 fazer um loop para gerar 20 letras
4.substituir por 0 a cada 2 digitos
5. transformar o array em string
-->
</p>
<script></script>
<script>
function randomText() {
const textArray = [];
const alfabeto = "abcdefghijklmnopqrstuvxywzABCDEFGHIJKLMNOPQRSTUVXYWZ";
for (let i = 0; i < 20; i++) {
let letter;
if ((i + 1) % 3 == 0) {
letter = 0;
} else {
let index = parseInt(Math.random() * alfabeto.length);
letter = alfabeto[index];
}
console.log(letter);
textArray.push(letter);
}
console.log(textArray.toString().replace(/\,/g, ""));
}
randomText();
</script>
<p>TESTE 2</p>
<p>
Um dia tem 24 horas, quantos segundos tem em uma semana? faça em