โ Back to Loops
Question 225
Digital Root
Digital Root
Read a positive integernfrom standard input and print its digital root: repeatedly replacenwith the sum of its digits until a single digit remains. For example,9875becomes9+8+7+5 = 29, then2+9 = 11, then1+1 = 2, so print: 2 Use an inner loop to sum the digits and an outer loop that repeats whilen >= 10.
Expected Output:
2
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.