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
5 Answers
+ 2
Search Code section for examples and inspirations š
+ 2
Wijdene Madiouni What is your question?
If you are facing issue in code share it also write clearly what's the problem?
+ 2
Wijdene Madiouni First learn concept then try to solve atleast you should show your attempt then only community will help you.
0
R(ā āæā)š š®š³ i can't solve this code