Tagged Questions
The digital-root tag has no wiki summary.
6
votes
22answers
2k views
Calculate the digital root of a number
A digital root, according to Wikipedia, is "the number obtained by adding all the digits, then adding the digits of that number, and then continuing until a single-digit number is reached."
For ...
1
vote
3answers
1k views
Calculating Digital Root, is there a better way?
This is how i calculated the digital root of an integer.
import acm.program.*;
public class Problem7 extends ConsoleProgram
{
public void run()
{
println("This program calculates ...