Math, asked by shilpykumari34, 6 months ago

Draw a flowchart for finding fibonacci series upto 100​

Answers

Answered by dukuntlasruthi
3

Answer:

This flowchart answers the question "How do you draw a flowchart to calculate the first N Fibonacci numbers?" If N is 20, then you get Fibonacci numbers 0 through 19. The Fibonacci series are the numbers:

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...

By definition the first two numbers are:

Fibonacci(0) = 0

Fibonacci(1) = 1

The next number is always the sum of the previous two.

Fibonacci(n) = Fibonacci(n-1) + Fibonacci(n-2)

Fibonacci(2) = 0 + 1 = 1

Fibonacci(3) = 1 + 1 = 2

Fibonacci(4) = 1 + 2 = 3

Fibonacci(5) = 2 + 3 = 5

Fibonacci(6) = 3 + 5 = 8

Fibonacci(7) = 5 + 8 = 13

Fibonacci(8) = 8 + 13 = 21

Fibonacci(9) = 13 + 21 = 34

Fibonacci(10) = 21 + 34 = 55

Fibonacci(11) = 34 + 55 = 89

Fibonacci(12) = 55 + 89 = 144

Fibonacci(13) = 89 + 144 = 233

Fibonacci(14) = 144 + 233 = 377

...

Step-by-step explanation:

make me as Brainlist and follow me

Attachments:
Similar questions