Fabonnaci series using recursion

class Fibonacci {
    static int fib(int n) {
        if (n == 0)
            return 0;
        else if(n == 1)
            return 1;
        else   
            return fib(n - 1) + fib(n - 2);
    }

    public static void main(String[] args) {
        for (int i = 0; i <= 10; i++)
            System.out.println(fib(i));
    }
}

Comments

Popular posts from this blog

Zeller's Congruence

Property Event-Delegation

Method with variable arguments