Answers for "java program to compute the sum of the digits of an integer"

1

sum of digits java

import java.util.Scanner;
public class SumDigit {
    public static void main(String[] argh){
        System.out.println("Enter int");
        Scanner input = new Scanner(System.in);
        int n = input.nextInt();
        int sum = 0 ;
        int i = 0;
        print( i =Sum_of_digits(sum,n));
    }

    public static int Sum_of_digits(int sum,int n){
        if(n<=0)
            return sum ;
        sum += n%10;
        return Sum_of_digits(sum,n/10);
    }

    public static void  print(int n){
        System.out.print(n);
    }
}
Posted by: Guest on July-13-2021
1

sum of digits in java

import java.io.*;
public class sd
{
  public static void main(String [] args)throws IOException
  {
     InputStreamReader hi = new InputStreamReader(System.in);
        BufferedReader in = new BufferedReader(hi);
        System.out.println("Enter the number");
        int num=Integer.parseInt(in.readLine());
    int sum=0;
    while(num>=0)
    {
      int rem=n;
      sum+=rem;
      int quo=n/10;
      n=quo;
    }
    System.out.println(sum);
  }
}
Posted by: Guest on November-06-2020

Code answers related to "java program to compute the sum of the digits of an integer"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language