Question: In this chapter, the rules given for calculating the factorial of a number are as follows: If n = 0 then factorial(n) = 1 If
In this chapter, the rules given for calculating the factorial of a number are as follows:
If n = 0 then factorial(n) = 1
If n > 0 then factorial(n) = n * factorial(n - 1)
If you were designing a function from these rules, what would the base case be? What would the recursive case be?
Step by Step Solution
3.35 Rating (170 Votes )
There are 3 Steps involved in it
Base Case The base case is when n 0 In this case the factorial o... View full answer
Get step-by-step solutions from verified subject matter experts
