int Fbi(int i) { if(i<2) return i == 0?0:1; return Fbi(i-1)+Fbi(i-2); } 转载于:https://www.cnblogs.com/eternal1025/p/4435285.html