27、已知函数Fact的程序如下,在执行Fact(5)的过程中,Fact函数被调用的次数为_____。 Long Int Fact(int n) { Long Int x; If (n > 1) { x = Fact(n-1); return n*x; } else return 1; }

A.5 B.3 C.4 D.6

时间:2024-05-05 11:46:47

相似题目