![]() |
VOOZH | about |
Given a number n, find the n-th Fibonacci Number. Note that n may be large.
Examples:
Input: 100
Output: 354224848179261915075
Input: 500
Output: 139423224561697880139724382870
407283950070256587697307264108962948325571622
863290691557658876222521294125
Prerequisite: BigInteger Class in Java, Fibonacci numbers
Fibonacci of a large number may contain more than 100 digits, which can be easily handled by BigInteger in Java. The BigInteger class is used for mathematical operation which involves very large integer calculations that are outside the limit of all available primitive data types.
Example:
Fibonacci of 100th term is 354224848179261915075
Explanation: