Question: Problem Description: A prime number is a number that is only evenly divisible by itself and 1. For example, the number 5 is prime because

Problem Description: A prime number is a number that is only evenly divisible by itself and 1. For example, the number 5 is prime because it can only be evenly divided by 1 and 5. The number 6, however, is not prime because it can be divided evenly by 1, 2, 3, and 6. The specifics regarding negative numbers differ between textbooks. In many cases, only positive numbers are considered, but we will consider them neither prime/not prime. Write a Boolean function named is_prime which takes an integer as an argument and returns true if the argument is a prime number, or false otherwise. Use the function in a program that prompts the user to enter a number then displays a message indicating whether the number is prime, not prime or negative

This program uses input; you will have to prompt the user for the inputs. The inputs can be assumed to be integers. You must use at least two functions. One being the main function and the other called is_prime is_prime should be a Boolean function that that returns true if a number is prime and false otherwise You should have a main function that accepts user input, and calls is_prime to find out if the number is prime or no

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!