CJCoding With Joseph

Digital Root

Read a positive integer n from standard input and print its digital root: repeatedly replace n with the sum of its digits until a single digit remains. For example, 9875 becomes 9+8+7+5 = 29, then 2+9 = 11, then 1+1 = 2, so print:

2

Use an inner loop to sum the digits and an outer loop that repeats while n >= 10.

Expected Output:

2
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
9875
This input is automatically fed to your program's stdin
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.