Question: Question 2 . [ 1 0 points ] 1 . boolean isPrime ( int n ) { / / tests if n is a prime

Question 2.[10 points]
1. boolean isPrime(int n){// tests if n is a prime number
2.// Input: a positive integer n
3.// Output: return true if n is a prime number, false otherwise
4. for (int x =2; x*x <= n; x++){
5. if (n % x ==0){// found that x divides n
6. return false;
7.}
8.}
9. return true; // found no divisor of n
10.}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!