递归求斐波拉数列函数

int fab(int n) {

     return (n > 1) ? (fab(n-1)  +  fab(n-2)) : 1;

}

原文地址:https://www.cnblogs.com/zhangqs008/p/2341205.html