Answered step by step
Verified Expert Solution
Question
1 Approved Answer
public class PrimeChecker { / / Returns 0 if value is not prime, 1 if value is prime public static int isPrime ( int testVal,
public class PrimeChecker
Returns if value is not prime, if value is prime
public static int isPrimeint testVal, int divVal
Base case : and are not prime, testVal is not prime
Base case : testVal only divisible by testVal is prime
Recursive Case
Check if testVal can be evenly divided by divVal
Hint: use the operator
If not, recursive call to isPrime with testVal and divVal
public static void mainString args
int primeCheckVal; Value checked for prime
Check primes for values to
for primeCheckVal ; primeCheckVal ; primeCheckVal
if isPrimeprimeCheckValprimeCheckVal
System.out.printlnprimeCheckVal is prime.";
else
System.out.printlnprimeCheckVal is not prime.";
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started