criando o codigo e achando os numero primos retornando true e false
This commit is contained in:
parent
c6f6df9c59
commit
e1df372303
@ -1,4 +1,10 @@
|
|||||||
export function isPrime(value) {
|
export function isPrime(value) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
for (let i = 2; i < value; i++) {
|
||||||
}
|
if (value % i === 0) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return value > 1
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user