Get Total Sum and Multiplication of Digits in Given Number using Java

Here is the code that can help you to get the total sum as well as multiplication values of all the digits in the given number.
  1. import java.io.*;  
  2. class Sum  
  3. {  
  4.    int total=0,remainder;  
  5.    public void add(int num)  
  6.    {  
  7.       while(num>0)  
  8.       {  
  9.          remainder = num % 10;
  10.       total = total + remainder;/* by placing '*' instead of '+' and total=1 you can get the multiplication value of all the digits given in the number*/  
  11.          num = num / 10;  
  12.       }  
  13.       System.out.println("Sum of the digits in the given number is:"+total);  
  14.    }  
  15. }  
  16. class Summation  
  17. {  
  18.    public static void main(String args[])throws IOException  
  19.    {  
  20.       int num;  
  21.       Sum s=new Sum();  
  22.       BufferedReader br= new BufferedReader(new InputStreamReader(System.in));  
  23.       System.out.println("\nEnter the number:");  
  24.       num=Integer.parseInt(br.readLine());  
  25.       s.add(num);  
  26.    }  

Thank you, keep learning and sharing.