标签: java
public static int f(int a){ if(a==0) return 0; if(a==1) return 1; return (f(a-1) + f(a-2)); }
这是否有非递归方式?