|
The program is to find all the
prime numbers falls inside the user defined range. A prime
number is a one, whose divisors are 1 and the number
itself.
Logic:
This is advanced version of the
previous program. Here, user need to enter two numbers as
the lower and upper limits for the iteration loop to find the
prime number in between. The outer for loop traces the
iteration till the limit, wherein each of iteration inner for
loop checks the present number is prime or not,
with
the prime number's logic. If it is, it prints out the
present number.
In this program, both the lower
limit and the upper limit are variables, and so is flexible.
These three programs show, how we can upgrade the logic to
make the code flexible one.
The similar growth can be seen
in the case of
finding the perfect numbers.
|