Fibonacci Series Program in C++

Advertisements

Find Number of Digit in C++ Armstrong Program in C++

C++ Program to Generate Fibonacci Series

Fibonacci Series is in the form of 0, 1, 1, 2, 3, 5, 8, 13, 21,...... To find this series we add two previous terms/digits and get next term/number.

fibonacci

Fibonacci Series Program in C++

#include<iostream.h>
#include<conio.h>

void main()
{
int i,no, first=0, second=1, next;
clrscr();
first=0;
second=1;
cout<<"Enter nubmer of terms for Series: ";
cin>>no;
cout<<"Fibonacci series are: \n";
for(i=0; i<no; i++)
{
cout<<"\n"<<first;
next = first + second;
first = second;
second = next;
}
getch();
}

Output

Enter nubmer of terms for Series: 7
Fibonacci series are:
0
1
1
2
3
5
8

Fabonic Series upto 100

Example

#include<iostream.h>
#include<conio.h>

void main()
{ 
double i, first, second, next; 
clrscr(); 
first=0; 
second=1; 
for(i=1;i<=100;i++) 
{ 
 cout<<first; 
 next=first+second;
 first=second;
 second=next; 
} 
getch(); 
} 

Output

program output
Find Number of Digit in C++ Armstrong Program in C++

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements