Computer Science, asked by tanishdesai786, 7 months ago

write a Program in c++ to print fibonacci series using Function in turbo cpp​

Answers

Answered by ashwanibhardwaj81
1

Answer:

include <iostream>

using namespace std;

int main() {

int n1=0,n2=1,n3,i,number;

cout<<"Enter the number of elements: ";

cin>>number;

cout<<n1<<" "<<n2<<" "; //printing 0 and 1.

for(i=2;i<number;++i) //loop starts from 2 because 0 and 1 are already printed. It is your a swer

Answered by manshi8723
4

Answer:

Let's see the fibonacci series program in C++ without recursion.

#include <iostream>

using namespace std;

int main() {

int n1=0,n2=1,n3,i,number;

cout<<"Enter the number of elements: ";

cin>>number

cout<<n1<<" "<<n2<<" "; //printing 0 and 1.

for(i=2;i<number;++i) //loop starts from 2 because 0 and 1 are already printed.

Explanation:

hope it helps you

Similar questions