Get Answers to all your Questions

header-bg qa

Write a java code to print the sum of digits of a given number.

Answers (1)

best_answer
import java.util.Scanner;
public class Digit_Sum 


    public static void main(String args[])
    
        int m, n, sum = 0;
        Scanner s = new Scanner(System.in);
        System.out.print("Enter the number:");
        m = s.nextInt();
        while(m > 0)
        
            n = m % 10;
            sum = sum + n;
            m = m / 10;
        
        System.out.println("Sum of Digits:"+sum);
    


                
Posted by

Deependra Verma

View full answer