write a c++ program generat a fibonacci series using while loop statement .(Hint0,1,1,2,3,5,8,13,21,34,55,...)
kiya ko 0 Newbie Poster
Recommended Answers
Jump to PostStart with the values 0 and 1 each value in the series is made up by adding the previous 2 values so
0 + 1 = 1
1 + 1 = 2
1 + 2 = 3
2 + 3 = 5
3 + 5 = 8
5 + 8 …
Jump to PostYes, why don't you show us your work?
All 5 Replies
Banfa 597 Posting Pro Featured Poster
ddanbe 2,724 Professional Procrastinator Featured Poster
duskoKoscica 0 Newbie Poster
DeanMSands3 69 Junior Poster
Banfa 597 Posting Pro Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.