Java: Compute the sum of the digits in an integer
Sum of Digits in Integer
Write a Java method to compute the sum of digits in an integer.
Test Data:
Input an integer: 25
Pictorial Presentation:

Sample Solution:
Java Code:
Sample Output:
Input an integer: 25 The sum is 7
Flowchart:
For more Practice: Solve these Related Problems:
- Write a Java program to compute the product of the digits of an integer using a loop.
- Write a Java program to calculate the digital root of an integer by recursively summing its digits.
- Write a Java program to sum only the even digits of a given integer.
- Write a Java program to sum the digits of an integer without converting it to a string.
Go to:
PREV : Count Words in String.
NEXT : Display First 50 Pentagonal Numbers.
Java Code Editor:
Contribute your code and comments through Disqus.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.