Java Program to find the sum of even and odd digits of a number


In this program, You will learn how to find the sum of even and odd digits of a number in java.


2341 => Even digit sum is: 2 + 4 = 6

2341 => Odd digit sum is: 3 + 1 = 4

Example: How to find the sum of even and odd digits of a number in java.

import java.util.Scanner;

class Main {
    public static void main(String args[]) {

        int r, n, rev = 0, se = 0, sod = 0;

        Scanner sc = new Scanner(System.in);
        System.out.print("Enter a number:");
        n = sc.nextInt();

        while (n > 0) {
            r = n % 10;
            if (r % 2 == 0) {
                se = se + r;
            } else {
                sod = sod + r;
            }
            n = n / 10;
        }

        System.out.println("Sum of all even digits:" + se);
        System.out.println("Sum of All odd digits" + sod);

    }
}

Output:

Enter a number:23456
Sum of all even digits:12
Sum of All odd digits8