主调函数:
n=4
f=fact(n)
outputf
被调函数:
functionfact(x)
ifx=1then
return1
else
returnx*fact(x-1)
endif
endfunction
请问上述伪代码的运行结果是____________?
n=4
f=fact(n)
outputf
被调函数:
functionfact(x)
ifx=1then
return1
else
returnx*fact(x-1)
endif
endfunction
请问上述伪代码的运行结果是____________?
举一反三
- 主调函数 n=21 flag=oddeven(n) if flag=0 then output even else output odd endif 被调函数: function oddeven(x) if x mod 2 !=0 return 1 else return 0 endif endfunction 请问上述伪代码运行的结果是_____________。
- 已知函数Fact的程序如下,Fact(4)的值为_____。Long Int Fact(int n){Long Int x;If (n > 1) { x = Fact(n-1); return n*x; }else return 1; }? 15|120|24|10
- 已知函数Fact的程序如下,Fact(4)的值为_____。 1. Long Int Fact(int n) 2. { Long Int x; 3. If (n > 1) 4. { x = Fact(n-1); 5. return n*x; } 6. else return 1; 7. }
- 已知函数Fact的程序如下,在执行Fact(4)的过程中,Fact函数被调用的次数为_____。1. Long Int Fact(int n)2. { Long Int x;3. If (n > 1)4. { x = Fact(n-1);5. return (n+x)*2; }6. else return 1;7. }
- 28 有如下递归函数fact(n),其时间复杂度为( )。 int fact (int n) { if(n<=1) return 1; else return(n*fact(n-1)); }