Logo Practice with Ankit | Fibonacci Series

Fibonacci Series


Requirement:

This exercise is designed to help students build logic and understand loop-based sequences.

Objective: Ask the user to enter a number, say n, and then display the first n terms of the Fibonacci series.

The Fibonacci series is a sequence where:
- The first term is 0
- The second term is 1
- Every term after that is the sum of the previous two terms

For example, if the user enters 7, the output will be:
0, 1, 1, 2, 3, 5, 8

Learning Outcome:
- Understand how sequences work
- Practice condition checks and loops
- Learn to generate dynamic output based on user input