Question: In C++ A prim number is an integer greater than 1 that is evenly divisible by only 1 and itself. For example, the number 5
In C++
A prim number is an integer greater than 1 that is evenly divisible by only 1 and itself. For example, the number 5 is prime because it can only be evenly divided by 1 and 5. The number 6, however, is not prim because it can be dvided by 1, 2, 3, and 6.
Write a boolean function named isPrime, which should loop through numbers from 2 to 100 and print all of the prim numbers in that range on separate lines.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
