FIBONACCI NUMBERS | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

FIBONACCI NUMBERS

Please can someone help me with the answer to this exercise The Fibonacci sequence is one of the most famous formulas in mathematics. Each number in the sequence is the sum of the previous two numbers. For example, this is what the Fibonacci sequence looks like for 10 numbers, starting with 0: 0,1,1,2,3,5,8,13,21,34. Write a program that uses the Nth (variable num in the code template) positive number as input, recursively calculates and outputs the first Nth numbers of the Fibonacci sequence (starting from 0). Sample input 6 Result example 0 1 1 2 3 8 If you are composing a Fibonacci sequence for n numbers, then you need to use the condition n <= 1 as a base case.

9th Feb 2022, 3:13 PM
NWACHUKWU PRECIOUS CALEB
NWACHUKWU PRECIOUS CALEB - avatar
2 Answers
+ 2
Yes, if you try yourself first and share your attempt here... 👍
9th Feb 2022, 3:28 PM
Jayakrishna 🇮🇳
0
Jayakrishna🇮🇳 so you think I didn't try to solve it before posting it here??? If you don't have an answer just skip rather than coming to say sh*t like this
11th Feb 2022, 6:50 AM
NWACHUKWU PRECIOUS CALEB
NWACHUKWU PRECIOUS CALEB - avatar