斐波那契数列的第30位
2018-10-14 本文已影响0人
zhengxc
public static void main(String[] args) {
System.out.println(test(30));
}
public static int test(int n) {
if (n <= 2) {
return 1;
}
return test(n - 1) + test(n - 2);
}