Writing a Recursive Power Function
Open answerWrite a recursive function puissance(base, exposant) that computes base raised to the power exposant (exposant a positive or zero integer), with the correct base case.
Write a recursive function puissance(base, exposant) that computes base raised to the power exposant (exposant a positive or zero integer), with the correct base case.