斐波序列

 public static int feibo(int n){
 if(n<=1) return 1;
  return feibo(n-1)+feibo(n-2);
      }

你可能感兴趣的:(斐波序列)