Modify your Prime number program to find all the prime numbers in a user-supplied range, using a function to determine the prime-ness of a single number. This function should incorporate the necessary logic from your previous program, and determine whether or not a single number is prime.
Function inputs: the number to determine the primeness of
Function outputs: whether or not the number is prime
Your main program should continue to handle all interaction with the screen and keyboard. To determine the primeness of multiple numbers, main will have to call your function multiple times.
Sample Run:
Enter the bottom of the range: 20
Enter the top of the range: 30
The prime numbers from 20-30 are:
23 29