对于递归函数f,调用f(4),其返回值为() 。int f(int n){ if (n) return f(n - 1) + n; else return n;} A、10B、4C、0D、其余选项均不是 发布时间:2025-06-03 10:50:50