|
Here is the slightly modified version of the
previous program,
which is flexible to find the Fibonacci numbers between the
given range.
Logic: Fibonacci numbers are the the members of
the Fibonacci series, which grows up accord to Fibonacci rule.
The rule states, the present number in the series is the sum
of past number and and the number before past, with the
initial condition that, series starts from 0, and the second
term is 1. Mathematically,
F(n+1) = F(n) + F(n-1)
// F(1) =0 and F(2) = 1
Taking the upper and lower limit from the user, tracing the
Fibonacci series with a while loop, finding the present
Fibonacci member and printing that only if the same falls
under the user specified range.
|