Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 271 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 271 Bytes

Fibonacci

A command line program to display the first n Fibonacci numbers, written in Java.

Compile: javac fibo.java

Run: java fibo [n]

where n is a positive integer less than 93, as the 92nd fibonacci
number is the largest that can be stored in a long in Java.