-
Data Structures
-
Iteration
-
Mathematics
-
Files
-
Programming On A Machine
-
Exercises
Fibonacci
Write a program that prints out fibonacci numbers.
You can read about the sequence here at this wiki link.
The fibonacci sequence is a list of numbers like this:
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89
Rather than just printing these numbers, the program needs to generate the next number in the sequence.
The first two numbers are given, 0
and 1
, but all the other numbers are generated by adding the previous two numbers.
Add the first and the second to get the third number, 0 + 1 = 1
And the second and the third to get the forth number, 1 + 1 = 2
And the third and the fourth to get the fifth number, 1 + 2 = 3
and so on, 2 + 3 = 5
The program should print up to a limit, otherwise it is infinite.