Introduction - If you have any usage issues, please Google them yourself
Use the following so-called simple variables data shifting approach to the Fibonacci series to derive the first n items (specific items of value) and display on the screen (positive integer n, through keyboard input): Description of variables old1 = 1, old2 = 1, newItem new items NewItem Fibonacci always away from it recently, the first two (old1 with old2) and cumulative. Then through old1 = old2 old2 = newItem the so-called data translation. Then a new calculation of the Fibonacci item newItem, followed by cycle, until the calculated series until the first n items.