w3resource

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:

Java Method Exercises: Compute the sum of the digits in an integer

Sample Solution:

Java Code:

import java.util.Scanner;
public class Exercise6 {

  public static void main(String[] args)
    {
      Scanner in = new Scanner(System.in);
      System.out.print("Input an integer: ");
      int digits = in.nextInt();
	  System.out.println("The sum is " + sumDigits(digits));
    }

 public static int sumDigits(long n) {
		int result = 0;
		
		while(n > 0) {
			result += n % 10;
			n /= 10;
		}
		
		return result;
	}
	
 }

Sample Output:

Input an integer: 25                                                                                          
The sum is 7

Flowchart:

Flowchart: Compute the sum of the digits in an integer


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.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java method to count all words in a string.
Next: Write a Java method to display the first 50 pentagonal numbers.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.