|
finding primes in an array
I need help writting code that returns primes in an array, one method that returns the nth prime number
int getNthPrimeNumber(int n ){
}
and a second that returns the number of prime numbers less than or equal to n
int getNumberPrimeNumbers(int n) {
}
thanks in advance for the help
|