Merge pull request #563 from rmakynen/master

Updated comments for the Fibonacci sequence
This commit is contained in:
Libin Yang 2018-10-09 23:54:38 +08:00 committed by GitHub
commit a8f3e5a758
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,22 @@
/**
*
* Fibonacci sequence, and characterized by the fact that every number
* after the first two is the sum of the two preceding ones.
*
* Fibonacci sequence: 0, 1, 1, 2, 3, 5, 8, 13, 21,...
*
* Source for the explanation: https://en.wikipedia.org/wiki/Fibonacci_number
*/
import java.util.Scanner;
public class FibToN {
public static void main(String[] args) {
//take input
Scanner scn = new Scanner(System.in);
int N = scn.nextInt();
// print fibonacci sequence less than N
// print all Fibonacci numbers that are smaller than your given input N
int first = 0, second = 1;
//first fibo and second fibonacci are 0 and 1 respectively
scn.close();
while(first <= N){
//print first fibo 0 then add second fibo into it while updating second as well