Skip to content
Snippets Groups Projects
Commit be25f5ec authored by Geverson Goncalves Rosa's avatar Geverson Goncalves Rosa
Browse files

Trabalho numeros primos

parent 82287c97
No related branches found
No related tags found
No related merge requests found
primos <- function(N) {
i <- 2:N
s <- c()
while( length(i) > 0 ) {
s <- c(s, i[1])
i <- i[-1][i[-1] %% i[1] > 0]
}
return(s)
}
primos(100)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment