计算fact(n)需要调用该函数的次数为( )。
- def fact(self,n):
- if n<=0:
- return 1
- else:
- return self.fact(n-1)*n
A.n+1
B.n-1
C.n
D.n+2
计算fact(n)需要调用该函数的次数为( )。
- def fact(self,n):
- if n<=0:
- return 1
- else:
- return self.fact(n-1)*n
Scratch3.0 全国青少年软件编程等级考试 Python Scratch图形化一级 Scratch图形化四级 Scratch图形化三级 Scratch图形化二级 电子学会