Problem here
Problem
The Fibonacci numbers (0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, …) are defined by the recurrence:
eqnarray20
Write a program to calculate the Fibonacci Numbers.
INPUT&OUTPUT
The input to your program would be a sequence of numbers smaller or equal than 5000, each on a separate line, specifying which Fibonacci number to calculate.
Your program should output the Fibonacci number for each input value, one per line.
Sample
input
5
7
11
7
11
output
The Fibonacci number for 5 is 5
The Fibonacci number for 7 is 13
The Fibonacci number for 11 is 89
The Fibonacci number for 7 is 13
The Fibonacci number for 11 is 89
Solution
這題要用大數加法才不會WA
No comments:
Post a Comment