Answers for "6. Write a Java program to return the sum of the digits present in the given string. If there is no digits the sum return is 0."

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 "6. Write a Java program to return the sum of the digits present in the given string. If there is no digits the sum return is 0."

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language