Answered step by step
Verified Expert Solution
Question
1 Approved Answer
write a program in python using recursion that takes a integer and then subtract 5 until it get to the lowest possible number like 1
write a program in python using recursion that takes a integer and then subtract 5 until it get to the lowest possible number like 1 or 2
for example if the number inputed is 17
then it would output
17 * 12 * 7 *2 = 2856
or if 6 was inputed then the output would be
6 * 1 = 6
and if the number is 5 then in would output 5 and if the number is less than 5 it would output 1
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started