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


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


2341 => 2 + 4 = 6

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

import java.util.Scanner;

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

        int n, r, s = 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) {
                s = s + r;
            }
            n = n / 10;
        }

        System.out.println("Sum of even digits:" + s);

    }
}

Output:

Enter a number:2345
Sum of even digits:6