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


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


2341 => 3 + 1 = 4

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

import java.util.Scanner;

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

        int r, n, rev = 0, 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 all odd digits:" + s);

    }
}

Output:

Enter a number:4567
Sum of all odd digits:12