In this chapter, the rules given for calculating the factorial of a number are as follows:
If n = 0 then factorial(n) = 1If n > 0 then factorial(n) = n X factorial(n — 1)
If you were designing a function from these rules, what would the base case be? What would the recursive case be?
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.