• 2021-04-14
    中国大学MOOC: 当n = 5时,下列函数的返回值是:( ) int foo(int n) { if (n < 2) return n; return foo(n - 1) + foo(n - 2);}