Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

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

Java Basic: Exercise-33 with Solution

Write a Java program and compute the sum of the digits of an integer.

Test Data:
Input an intger: 25

Pictorial Presentation:

Java: Compute the sum of the digits of an integer

Sample Solution:

Java Code:

import java.util.Scanner;
public class Exercise33 { 
 public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        System.out.print("Input an integer: ");
        long n = input.nextLong();
        System.out.println("The sum of the digits is: " + sumDigits(n));

    }

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

Sample Output:

Input an intger: 25                                                                                           
The sum of the digits is: 7 

Flowchart:

Flowchart: Java exercises: Compute the sum of the digits of an integer

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to compare two numbers.
Next: Write a Java program to compute the area of a hexagon.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe