Question: Implement a function that takes an integer value and returns true if the integer is a prime number and false otherwise. The function should have

Implement a function that takes an integer value and returns true if the integer is a prime number and false otherwise. The function should have the following signature.

bool is_prime(int n)

Use an assert statement inside the function to check the precondition that n is greater than one.

Include the function in a console program that calls the is_prime function with a range of values that test several common cases as well as the edge cases. Use an assert statement for each test case. For example, the following tests that the function returns false for the value 100.

assert(!is_prime(100));

You need to include the cassert header in your code in order to use the assert function.

#include

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 Databases Questions!