Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...