Fibonacci series is that when you add the previous two numbers the next number is formed. You have to start from 0 and 1. E.g. 0+1=1 → 1+l=2 → 1+2=3 → 2+3=5 → 3+5=8→ 5+8=13 So the series becomes 0 1 1 2 3 5 8 13 21 34 55 . Steps: You have to take an input number that shows how many terms to be displayed. Then use loops for displaying the Fibonacci series up to that term e.g. input no is =6 the output should be 0 11 2 3 5

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter5: Control Structures Ii (repetition)
Section: Chapter Questions
Problem 29PE
icon
Related questions
Question

Write simple code in python as i am a begineer

Fibonacci series is that when you add the previous two numbers the next number is formed. You
have to start from 0 and 1.
E.g. 0+1=1 → 1+1=2→ 1+2=3 →2+3=5 → 3+5=8 → 5+8=13
So the series becomes
0 11 2 3 5 8 13 21 34 55
Steps: You have to take an input number that shows how many terms to be displayed. Then use
loops for displaying the Fibonacci series up to that term e.g. input no is =6 the output should be
0112 3 5
Transcribed Image Text:Fibonacci series is that when you add the previous two numbers the next number is formed. You have to start from 0 and 1. E.g. 0+1=1 → 1+1=2→ 1+2=3 →2+3=5 → 3+5=8 → 5+8=13 So the series becomes 0 11 2 3 5 8 13 21 34 55 Steps: You have to take an input number that shows how many terms to be displayed. Then use loops for displaying the Fibonacci series up to that term e.g. input no is =6 the output should be 0112 3 5
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning