Question: We can determine how many digits a positive integer has by repeatedly dividing by 10 (without keeping the remainder) until the number is less than
We can determine how many digits a positive integer has by repeatedly dividing by 10 (without keeping the remainder) until the number is less than 10, consisting of only 1 digit. We add 1 to this value for each time we divide by 10. Here is the recursive algorithm:
1. If n < 10 return 1.|
2. Otherwise, return 1 + the number of digits in n/10 (ignoring the fractional part).
Implement this recursive algorithm in Python and test it using a main function that calls this with the values 15, 105, and 15105. Remember that if n is an integer, n/10 will be an integer without the fractional part.
Step by Step Solution
3.37 Rating (147 Votes )
There are 3 Steps involved in it
Sure lets implement the given recursive algorithm in Python to determine the number of digits in a p... View full answer
Get step-by-step solutions from verified subject matter experts
