Question: Write a program to find out sum of each digit in the given number using recursion logic. using the value 12345 as the input

Write a program to find out sum of each digit in the

 

Write a program to find out sum of each digit in the given number using recursion logic. using the value 12345 as the input . For example, if the number is 12345, then the sum should be 1+2+3+4+5 = 15. output "The sum of 12345-15 using recursion"

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Python code def digitsumn if n 0 return 0 else return n 10 digitsumn 10 def main number 12345 totals... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!