C++ Program to Print Fibonacci series

C++ Program to Print Fibonacci Series

Here you will get an example code of C++ program to print Fibonacci series.

The Fibonacci series is a list of numbers in which, each number is the sum of the two preceding ones, usually starting with 0 and 1. So, the sequence goes: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, and so forth. Mathematically, it can be defined by the recurrence relation:
F(n)=F(n−1)+F(n−2)

with initial conditions:

F(0)=0, F(1)=1

Example C++ Program to Print Fibonacci series

Output

Enter the number of terms:12
Fibonacci Series: 0 1 1 2 3 5 8 13 21 34 55 89

 

 

Check out our other C++ programming Examples

 

 

 

 

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top