Fibonacci Sequence Author: Shawn Modersohn Spring 2011 License: GPL V3 Scope: The Fibonacci sequence is a series of numbers where each number is the sum of the two proceeding numbers starting at 0. The program asks for an input number from 0 - 9 to determine how many times you want the sequence to be computed. This input number is multiplied by 10. If for example, you enter the number 9, the sequence will be computed 90 times. Running the Program: Click the download .class file link. This will prompt you to download Fibonacci.zip. Download the file and navigate to the download's directory. Unzip the file, you should see a folder named com. Open a command prompt and navigate to the directory the com folder is listed. From the command line, type the following, "java com.shawnmodersohn.Fibonacci" without the quotes. The program should have presented you a prompt asking how many calculations you want performed.