Programming Shortcut - c, c++, java, SQL, online tutorials
No Result
View All Result
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us
No Result
View All Result
Programming Shortcut - c, c++, java, SQL, online tutorials
No Result
View All Result
Home Programs in java

Java program to perform sum of digits until single digit is obtained

admin by admin
April 16, 2020
Reading Time:2min read
0

RELATED POSTS

Program to find out code of grade and percentage calculator in Java

Java program to find quotient and remainder

Java program to solve mathematical expressions

 Hello Friends!
Today will discuss do while loop with an example, how to make a program in java by do-while loop, do while loop in java program an example with explanation.
Write a program in java to find the sum of digits of a number until the sum is reduced to 1 digit.
For example:
The number is 538769.
Then 5+3+8+7+6+9=38
3+8=11
11=2

Finding sum of digits of a number until sum becomes single digit java program

import java.util.Scanner;
public class do_while {
public static void main(String[] args){
long num,dig,sum;
Scanner in =new Scanner(System.in);
System.out.print(“Enter a number :”);
num=in.nextLong();
System.out.println(“”);
System.out.print(num);
do{
sum = 0;
while(num!=0)
{
dig=num%10;
sum+=dig;
num/=10;
}
System.out.print(“->”+sum);
num=sum;
}while(num/10!=0);
}

}

Output: Enter a number : 538769
538769->38->11->2

Explanation :

    do{
/* 1: program code */
}while(num/10!=0);

The Above Condition is not exited while a number is more than one digit.

/* 1: program code*/
while(num!=0)
{
dig=num%10;
sum+=dig;
num/=10;
}

Here we use program code to find a sum of digit then the given program exapmle is for “Sum of digits of a number until the sum is reduced to 1 digit”

So we find Your Program

I make this programming and hope you are like the post if are you like the post you can please comment and Share the post to reach more people.
If any doubt about this java programming code or input & output please comment below
If you have another question about java programming send an email by contacting us form are given on the page right side.
I am Try to Help in your Programming Language by Programming Shortcut

Please share your experience about this post,
Thank You!

ShareTweetPin
admin

admin

Related Posts

Program to find out code of grade and percentage calculator in Java
Programming Language

Program to find out code of grade and percentage calculator in Java

April 5, 2022
Programs in java

Java program to find quotient and remainder

April 21, 2020
Programs in java

Java program to solve mathematical expressions

April 21, 2020
Programming Language

Difference and similarities between java and c++

April 3, 2022
.Net

Difference between FOPs and OOPs

April 16, 2020
Programming Language

How to set path in java in windows 10, 8.1, 8, 7

April 16, 2020
Next Post

Java program to convert decimal to binary with explanation

Program to check a letter is vowel or consonant in java

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

I agree to the Terms & Conditions and Privacy Policy.

Popular Stories

  • Short name by java program

    0 shares
    Share 0 Tweet 0
  • Relation of two numbers in c programming

    0 shares
    Share 0 Tweet 0
  • Bigger and smaller number in c programming

    0 shares
    Share 0 Tweet 0
  • Bigger and smaller number in c++

    0 shares
    Share 0 Tweet 0
  • Java program to perform sum of digits until single digit is obtained

    0 shares
    Share 0 Tweet 0
ADVERTISEMENT
C, C++ & Java Programming tutorial with example Programming Shortcut

Hi Friends, Programming Shortcut is Educational Blog, that From you Learn Programming in Multiple languages like C, C++, Java Programming Language.

LEARN MORE »

Recent Posts

  • Armstrong number in c
  • Program to find out code of grade and percentage calculator in Java
  • Program to find out the grade and percentage calculator in cpp

Categories

  • .Net
  • Programming Language
  • Programs in c
  • Programs in cpp
  • Programs in java
  • Uncategorized

All © 2021 Programming Shortcut - Present By Math Training.

No Result
View All Result
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us

All © 2021 Programming Shortcut - Present By Math Training.

This website uses cookies. By continuing to use this website you are giving consent to cookies being used. Visit our Privacy and Cookie Policy.