write a program to find the fibbonacci series of n numbers
Answers
Answered by
1
Answer:
Given a number n, print n-th Fibonacci Number. Recommended: Please solve it on “ PRACTICE ” first, before moving on to the solution. Write a function int fib (int n) that returns F n. For example, if n = 0, then fib () should return 0. If n = 1, then it should return 1. For n > 1, it should return F n-1 + F n-2
Similar questions
Computer Science,
3 months ago
English,
3 months ago
Science,
6 months ago
Math,
6 months ago
English,
1 year ago
Computer Science,
1 year ago