Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 1.39 KB

README.md

File metadata and controls

40 lines (33 loc) · 1.39 KB

fibonacciJ

Usage

java -jar fibonacciJ.jar [number]

ToDo

  • todo
    • GUI (when started without arguments show GUI)
    • change arguments to "-help, -position x, -sum x, ..."
  • wip
    • OOP
    • write functions getAtPosition(), getSequence(), getSum()
    • menu - [1] get fibonacci number at position x
    • menu - [2] get whole fibonacci sequence for x positions
    • menu - [3] get sum of fibonacci sequence for x positions
    • menu - [9] activate debugging
  • done
    • start with number (fibonacciJ.jar 15) and output that position of fibonacci
    • error handling
    • write log for debugging (for every step)
    • start without number (fibonacciJ.jar) to show menu
    • when long is too long it gets negative, ... (float is better but optically not pleasing)
    • new function inform() -> will replace System.out... and Debug.returnInfo(). check if debug=true

Meta

Patrick Szalewicz – [email protected]

Distributed under the GNU license. See LICENSE for more information.

https://github.com/fachinformatiker/fibonacciJ

Contributing

  1. Fork it (https://github.com/fachinformatiker/fibonacciJ/fork)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request