Anyone can tell me how to make fibonacci ranks order without recursion in c++? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Anyone can tell me how to make fibonacci ranks order without recursion in c++?

i still cant figure it out

9th Oct 2017, 6:52 AM
Reza Faiz
Reza Faiz - avatar
2 Answers
+ 9
#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 { n3=n1+n2; cout<<n3<<" "; n1=n2; n2=n3; } return 0; }
9th Oct 2017, 7:41 AM
Scooby
Scooby - avatar
+ 11
Not C++, but the same logic in one line. https://code.sololearn.com/cxpVnO0J3v5H/#java
9th Oct 2017, 11:27 AM
Hatsy Rei
Hatsy Rei - avatar