You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Fib.java 129B

12345678
  1. package caching;
  2. public class Fib {
  3. public static int calc(int n){
  4. if (n < 2) return 1;
  5. return calc(n-1) + calc(n-2);
  6. }
  7. }