Question: Regular C Programming DESCRIPTION The first 11 prime integers are 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, and 31. A positive integer
Regular C Programming

DESCRIPTION The first 11 prime integers are 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, and 31. A positive integer between land 1000 (inclusive), other than the first 11 prime integers, is prime if it is not divisible by 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, and 31. Write a program that prompts the user to enter a positive integer between land 1000 (inclusive) and then outputs whether the number is prime. If the number is not prime, then output all the numbers, from the list of the first 11 prime integers, which divide the number Example Output: Enter an integer between 1 and 1000 (inclusive) : 62 62 is divisible by 2, 31. 62 is not prime. ___ __________ _____ Enter an integer between 1 and 1000 (inclusive): -1 You must enter a number between 1 and 1000 (inclusive). Enter an integer between 1 and 1000 (inclusive): 3 3 is prime
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
