Compute Nth Fibonacci Number

Compute Nth Fibonacci Number” is similar to problem of printing fibonacci series upto Nth Term, the only difference between is that, in this problem we need to compute and print only Nth Term of the Fibonacci Series, while, in other problem we need to print the fibonacci series up to Nth term. 

Here, we are given a number ‘n’, entered by user and Our task is to compute the nth Fibonacci number.

Fibonacci series: 0, 1, 1, 2, 3, 5, 8…

The first two terms of Fibonacci series are fixed and are 0 and 1. All the succeeding numbers of the Fibonacci series are sum of preceding two numbers.

Like, First term = 0, Second Term = 1

Third Term = Second Term(1) + First Term(0) = 1

Fourth Term = Third Term(1) + Second Term(1) = 2

Fifth Term = Fourth Term(2) + Third Term(1) = 3

.

.

.

So on…

Formula to Compute Nth Fibonacci number:
F(n) = F(n-1) + F(n-2)

Example (Compute Nth Fibonacci number):

INPUT:
N = 5
OUTPUT:
3
INPUT:
N = 6
OUPUT:
5

C++ Program to compute nth fibonacci number is as follows:

/* C++ Program to compute nth fibonacci number */
#include<bits/stdc++.h>  
using namespace std;  
int main()  
{  
    //Scan the number  
    int n;  
    cout<<"Enter the number:";  
    cin>>n;  
      
    // Computing the fibonacci  
    int first = 0;  
    int second = 1;  
    int nth;  
    for(int i = 3; i <= n ; i++)  
    {  
        nth = first + second;  
        first = second;  
        second = nth;  
    }  
      
    // Printing the fibonacci number  
    if(n==1)   
    {  
        cout<<"The nth fibonacci number is "<<first;  
    }  
    else if(n==2)  
    {  
        cout<<"The nth fibonacci number is "<<second;  
    }  
    else  
    {  
    cout<<"The nth fibonacci number is "<<nth;  
    }  
}  

OUTPUT:
Enter the number:5
3

Related Posts:

  1. Program to print Fibonacci Series up to Nth Term.
  1. Program to find Power of the Number.
  2. Program to find Quotient and Remainder.
  3. Program to find largest amongst three numbers.
  4. Program to find factorial of a number.
  5. Program to find GCD of two numbers.
  6. Program to find LCM of two numbers.
  7. Program to check whether entered number is odd or even.
  8. Program to check whether entered number is prime number or not.
  9. Program to check whether entered number is palindrome or not.
  10. Program to check whether entered number is Armstrong Number or Not.
  11. Program to convert binary number to octal number.
  12. Program to convert binary number to decimal number.
  13. Program to convert binary number to hexadecimal number.
  14. Program to convert octal number to binary number.
  15. Program to convert octal number to decimal number.
  16. Program to convert octal number to hexadecimal number.
  17. Program to convert decimal number to binary number.
  18. Program to convert decimal number to octal number.
  19. Program to convert decimal number to hexadecimal number.
  20. Program to convert hexadecimal number to binary number.

You may also like...