Hi can some body explain me about a program to give Fibonacci series in the output? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Hi can some body explain me about a program to give Fibonacci series in the output?

I have a problem with the statement part of that program : wrote a program to give Fibonacci series in the outnput: sum=a+b; cout << sum; a=b; b=sum ; Please explain that what is going on the last two lines?

5th Aug 2022, 8:42 AM
Ppsh
2 Answers
+ 2
Fibonacci series is: a number is sum of previous two consecutive numbers.. ex: a = 0, b = 1 Next number is a+b = 0+1 0,1,1 (=> a=1, b=1) Next number should be 1+1=2 0,1,1,2 Next number should be 1+2=3 (a=1, b=2) 0,1,1,2,3.... Each time you need to change b to a so a=b, and sum to b, so b=sum. Hope it helps..
5th Aug 2022, 8:49 AM
Jayakrishna 🇮🇳
+ 1
Jayakrishna🇮🇳 Thanks a lot🙏🏻❤
5th Aug 2022, 9:09 AM
Ppsh