0

Help

The Fibonacci sequence is one of the most famous formulas in mathematics. Each number in the sequence is the sum of the two numbers that precede it. For example, here is the Fibonacci sequence for 10 numbers, starting from 0: 0,1,1,2,3,5,8,13,21,34. Write a program to take N (variable num in code template) positive numbers as input, and recursively calculate and output the first N numbers of the Fibonacci sequence (starting from 0). Sample Input 6 Sample Output 0 1 1 2 3 5

18th Jan 2022, 12:37 PM
Wijdene Madiouni
Wijdene Madiouni - avatar
5 Answers
+ 2
Search Code section for examples and inspirations šŸ‘
18th Jan 2022, 1:22 PM
Ipang
+ 2
Wijdene Madiouni What is your question? If you are facing issue in code share it also write clearly what's the problem?
18th Jan 2022, 1:33 PM
RšŸšŸ‡®šŸ‡³
RšŸšŸ‡®šŸ‡³ - avatar
+ 2
Wijdene Madiouni First learn concept then try to solve atleast you should show your attempt then only community will help you.
19th Jan 2022, 4:50 AM
RšŸšŸ‡®šŸ‡³
RšŸšŸ‡®šŸ‡³ - avatar
18th Jan 2022, 11:24 PM
Wijdene Madiouni
Wijdene Madiouni - avatar