当前位置:百科知识 > 数据结构

问题描述:

[单选] 设有一个递归算法如下
A.int fact(int n) { //n大于等于0 B.if(n<=0) return 1 C.else return n*fact(n-1); } D.算fact(n)需要调用该函数的次数为() E.n+1 F.n-1
参考答案:查看
答案解析:
☆收藏

随机题目