Hello friends, Welcome to your Techgsr.co blog. And today in this article we will learn about how to write Program to compute the fibonacci series .So let’s go to our topic
#include <iostream.h> #include <conio.h> void main() { clrscr(); int a,b,x,y,num1,ct; a=0; b=1; cout << “Enter the number of terms (less than 25) : ” << endl; cin>>num1; cout << a << endl; cout << b << endl; for(ct=1;ct<=num1-2;ct++) { x=a+b; cout << x << endl; y=a; a=b; b=x; } getch(); }
This program takes in the number of terms num1 in the fibonacci series (less than 25) as a
screen input from the user.
It then computes the fibonacci series and prints it out using the ‘cout’ command.INPUT :
12
OUTPUT :
0
1
1
2
3
5
8
13
21
34
55
89
Related Post:-
So I hope that you learn about this And if you have any more queries about computer relegated then feel free to discuss your problem in the comment section.Thank you so much and come back for more updates about Techgsr.co .