Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Technology And Management Computers And Information Processing Systems For Business

Authors: Robert C. Goldstein

1st Edition

0471887374, 978-0471887379

More Books

Students also viewed these Databases questions

Question

1. Sales results over time.

Answered: 1 week ago