快乐学习 一个网站喵查铺子(catpuzi.com)全搞定~

下面函数是求阶乘递归函数,请将程序补充完整。long Fact(int n) {     if (n < 0)      return 0;     if (n==1 || n==0) __________________;     else ____________________; }

中国大学MOOC答案 数据帝 2024-04-09 扫描二维码

A、第4行: return  1 第5行: return n*Fact(n-1)
B、第4行: return  0第5行: return n*Fact(n-1)
C、第4行: return  -1 第5行: return (n-1)*Fact(n)
D、第4行: return  1 第5行: return Fact(n-1)
喵查答案:第4行: return  1 第5行: return n*Fact(n-1)

喜欢 (0)
关于作者: