Given an integer, sum the digits repeatedly until you end up with a single value less than 10.
For example, if you add the digits of the number 123456789, you get 1+2+3+4+5+6+7+8+9 = 45, and then 4+5 = 9
The input will be a string of digits. The output should be the scalar value of the repeated sum of digits.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers298
Suggested Problems
-
1713 Solvers
-
Project Euler: Problem 2, Sum of even Fibonacci
2822 Solvers
-
743 Solvers
-
Relative ratio of "1" in binary number
1592 Solvers
-
3388 Solvers
More from this Author3
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Nice Problem.