[UVA][JAVA] 10183 - How Many Fibs?
Problem B: How many Fibs?
Recall the definition of the Fibonacci numbers:
f1 := 1 f2 := 2
fn := fn-1 + fn-2
(n>=3) Given two numbers a and b,
calculate how many Fibonacci numbers are in the range [a,b].
Input Specification
The input contains sever...