I'm writing a method isPrime() that returns a boolean variable that is true only if the number m is prime. Right now I've set up a massive switch statement that consists of all the prime numbers up to 271. If the number n(number of variables I need to insert into an array) is large enough so that n/m > 0.75 and m cannot increase any further without being a non-prime number as defined by my method then this class won't work...
I can't think of any better methods to determine if m is prime or not.
public void getPrime(){
m = (n/4) + n;
while(!isPrime()){
m++;
}
double dblM = m;
double dblN = n;
if(dblN/dblM > 0.75){
m++;
while(!isPrime()){
m++;
}
}
}
