Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Add all the digits of a given positive integer until the result has a single digit

Java Basic: Exercise-108 with Solution

Write a Java program to add all the digits of a given positive integer until the result has a single digit.

Pictorial Presentation:

Java Basic Exercises: Add all the digits of a given positive integer until the result has a single digit

Sample Solution:

Java Code:

import java.util.Scanner;
public class Example108 {
     public static void main(String[] arg) {	
        Scanner in = new Scanner(System.in);	
       System.out.print("Input a positive integer: ");
        int n = in.nextInt(); 
		if (n>0)
		{
           System.out.print("The single digit number is: "+(n == 0 ? 0 : (n % 9 == 0 ? 9 : n % 9)));
		}
		System.out.println("\n");  
    }
}

Sample Output:

Input a positive integer: 25                                           
The single digit number is: 7

Flowchart:

Flowchart: Java exercises: Add all the digits of a given positive integer until the result has a single digit

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to check if an array of integers contains three increasing adjacent numbers.
Next: Write a Java program to form a staircase shape of n coins where every k-th row must have exactly k coins.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe