โ Back to Loops
Question 126
Fibonacci First N Terms
Fibonacci First N Terms
Read an integer N (N >= 1) and print the first N Fibonacci numbers on one line separated by single spaces. The sequence starts 0, 1, and each term is the sum of the previous two. Example (N = 8): 0 1 1 2 3 5 8 13
Expected Output:
0 1 1 2 3 5 8 13
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.