Program to find Fibonacci series up to n

06 May 2024


Description about Program to find Fibonacci series up to n

Fibonacci series is a special series where nth term is the sum of previous two terms in the series. The series starts with 0 and 1 as the first and second term of the series respectively.

Here you nee to get the value for nth term from user and then print Fibonacci series containing n terms.

Input

5

Output

0,1,1,2,3

Input

8

Output

0,1,1,2,3,5,8,13

C Program to find Fibonacci series up to n

Method 1

#include <stdio.h>

int main()

{

    int num, a=-1,b=1,c;

    printf("Enter a number: ");

    scanf("%d",&num);

    printf("Fibonacci series: ");

    for(int i=0;i<num;i++)

    {

        c=a+b;

        printf("%d, ",c);

        a=b;

        b=c;

    }

    return 0;

}

Method 2

#include <stdio.h>

int fibonacci(int num)

{

   static int a = 0, b = 1, c;    

    if(num > 0)

    {    

        c = a + b;    

        a = b;    

        b = c;    

        printf("%d, ",c);

        fibonacci(num-1);    

    }

}

int main()

{

    int num;

    printf("Enter the number");

    scanf("%d",&num);

    printf("0, 1, ");

    fibonacci(num-2);

    return 0;

}

C++ Program to find Fibonacci series up to n

Method 1

#include <iostream>

using namespace std;

int main()

{

    int num, a=-1,b=1,c;

    cout<<"Enter a number: ";

    cin>>num;

    cout<<"Fibonacci series: ";

    for(int i=0;i<num;i++)

    {

        c=a+b;

        cout<<c<<",";

        a=b;

        b=c;

    }

    return 0;

}

Method 2

#include <iostream>

using namespace std;

int fibonacci(int num)

{

   static int a = 0, b = 1, c;    

    if(num > 0)

    {    

        c = a + b;    

        a = b;    

        b = c;    

        cout<<c<<", ";

        fibonacci(num-1);    

    }

    return 0;

}

int main()

{

    int num;

    cout<<"Enter the number: ";

    cin>>num;

    cout<<"0, 1, ";

    fibonacci(num-2);

    return 0;

}

Java Program to find Fibonacci series up to n

import java.util.Scanner;

public class Main

{

public static void main(String[] args) {

Scanner sc = new Scanner(System.in);

System.out.print("Enter the number : ");

int num = sc.nextInt();

if(num > 0)

{

int a = 0, b = 1, c;

System.out.print("Fibonacci Series : "+a+", "+b+", ");

while(b < num)

{

c=a+b;

a=b;

b=c;

if(b <= num)

System.out.print(b+", ");

}

}

else

System.out.print("Invalid Input");

}

}

Python Program to find Fibonacci series up to n

num = int(input("Enter the Number:"))

a, b = 0, 1

print("Fibonacci Series:", a,",", b, end=" , ")

for i in range(2, num):

    c = a + b

    a = b

    b = c

    print(c,",", end=" ")


If you are from 2023 batch student, Join our Telegram group for placement preparation and coming placement drive updates : https://t.me/talentbattle2023

FAQ

Any Questions?
Look Here.

Related Articles

Program to identify if the character is an alphabet or not

Program to Replace substring in a string

Check if two strings match where one string contains wildcard characters

Lower Triangular Matrix

MATRIX MULTIPLICATION Program

Maximum Product Subarray

Minimum Scalar Product Program

Program for Binary to decimal conversion

Program for Binary to octal conversion

Program for Decimal to binary conversion

Program for Decimal to octal conversion

Program for Maximum Scalar Product

Program for Octal to binary conversion

Program for Octal to decimal conversion

Program To Add two matrices and print the resultant matrix

Program to Add two fractions

Program to calculate Maximum number of handshakes

Program to calculate the Frequency of characters in a string

Program to Capitalize the first and last letter of each word of a string

Program to change the given matrix to transpose of the matrix.

Program to check if String is a palindrome or not

Program to check if two arrays are the same or not

Program to check if two strings are Anagram or not

Program to compare two strings

Program to concatenate a string

Program to copy a string

Program to Count common subsequence in two strings

Program to Count the sum of numbers in a string

Program to express a number as a sum of two prime numbers

Program to find Area of a rectangle

Program to find Area of a Triangle

Program to find ASCII values of a character

Program to find equilibrium index of an array

Program to find Factorial of a number

Program to find Frequency of each element of an array

Program to find LCM of two numbers

Program to find longest palindrome in an array

Program to find minimum sum of absolute difference of given array

Program to find Number of days in a given month of a given year

Program to find Number of digits in an integer

Program to find number of even and odd elements in an array

Program to find number of integers which has exactly 9 divisors

Program to find Permutations in which n people can occupy r seats in a classroom.

Program to find Power of a number

Program to find roots of a quadratic equation

Program to find second smallest element in the array

Program to find smallest and largest element in an array

Program to find Sum of digits of a number

Program to find sum of elements in an array

Program to find Sum of N natural numbers

Program to find Sum of numbers in a given range

Program to find sum of positive square elements in the array

Program to find the Area of a circle

Program to find the array type

Program to find the double of the given number without using arithmetic operator

Program to find the Factors of a number

Program to find the Quadrants in which coordinates lie

Program to find whether an array is a subset of another array or not.

Program to find whether Arrays are disjoint or not

Program to find whether the numbers of an array be made equal

Program to identify if the character is a vowel or consonant

Program to identify if the number is Armstrong number or not

Program to identify if the number is even or odd

Program to identify if the number is Palindrome or not

Program to identify if the number is Perfect number or not

Program to identify if the number is Prime number or not

Program to identify if the number is Strong number or not

Program to identify of the a number is positive or negative

Program to print Armstrong numbers between two intervals

Program to print Diamond pattern printing using stars

Program to print Diamond pattern using Column number

Program to print Diamond pattern using Row numbers

Program to print Floyd’s triangle

Program to print hollow rectangle star pattern

Program to print Length of the string without using strlen() function

Program to print Non-repeating characters in a string

Program to print Palindromic pyramid pattern printing

Program to print Pascal triangle

Program to print prime numbers in a given range

Program to print Pyramid pattern using numbers

Program to print Pyramid pattern using stars

Program to print Solid rectangle star pattern

Program to print the length of a string

Program to print the max elements in all the rows.

Program to Remove brackets from an algebraic expression

Program to Remove characters in a string except alphabets

Program to remove duplicate elements in an array

Program to Remove spaces from a string

Program to Remove vowels from a string

Program to Replace all 0’s with 1 in a given integer

Program to reverse a given number

Program to reverse a string

Program to reverse the array

Program to sort the array

Program to Toggle each character in a string

Subtract matrix2 from matrix1 and print the resultant matrix program

Upper Triangular Matrix