-1
I want to run a 1 to 5 and then I want to know if any of the numbers of the for is prime.
for(j = 1 ; j<= 10; j++){ //Percorres os numeros a serem testados
for(i = 1;i <= j; i++){ // Listo Todos os divisores
var numeroDivisores = 0;
if(j % i == 0){
numeroDivisores++ //Adiciona os divisores daquele numero
}
}
} if (numeroDivisores == 2){// vou pegar cada divisor e dividir por numero primo
console.log("Primo, somente 2x divisores")
}else{
console.log("Infelizmente não é primo")
}
If you wanted to do the
for
from 1 to 5, why didj <= 10
? Anyway, if you search the site, you will find various algorithms to check if a number is prime.– hkotsubo
@hkotsubo It was a mistake of attention there, pardon.
– Patric Enderson