Java: 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:

Sample Solution:
Java Code:
import java.util.Scanner;
public class Example108 {
public static void main(String[] arg) {
// Create a Scanner object for user input
Scanner in = new Scanner(System.in);
// Prompt the user to input a positive integer
System.out.print("Input a positive integer: ");
// Read the user's input as an integer
int n = in.nextInt();
if (n > 0) {
// Check if n is a positive integer
System.out.print("The single digit number is: " + (n == 0 ? 0 : (n % 9 == 0 ? 9 : n % 9)));
}
// Close the input scanner
in.close();
System.out.println("\n");
}
}
Sample Output:
Input a positive integer: 25 The single digit number is: 7
Flowchart:

Java Code Editor:
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.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join