Here is a problem that requires you to use the remainder operator to break a number into pieces and then add the pieces. Complete the standard Java console program named SumDigits.java.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter5: Repetition Statements
Section: Chapter Questions
Problem 7PP
icon
Related questions
Question

Here is a problem that requires you to use the remainder operator to break a number into pieces and then add the pieces. Complete the standard Java console program named SumDigits.java.

The program reads a single integer from the user. (Do not read the input as a String.) You can assume that the user will cooperate and only input values between 0 and 1,000. Your program should use the arithmetic operators to sum all of the individual digits in the number.

SumDigits.java
1 import java.util.Scanner;
2 /**
3
* Use calculations to process and integer digit.
* @author
4
* @version
6
*/
7 public class SumDigits
8 {
9
/**
10
* Read a number as an integer, then sum each individual digit.
* Do not read the number as a string.
11
12
*/
13
public static void main(String[] args)
{
System.out.println("Sum Digits");
System.out.println(":
// INPUT
// Dummy starter code. Replace with your IPO code.
System.out.print("Enter a number from 0 to 1000: 999");
System.out.println();
System.out.println("\tSum of the digits is: 27");
}
14
15
16
");
17
18
19
20
21
22
23 }
Transcribed Image Text:SumDigits.java 1 import java.util.Scanner; 2 /** 3 * Use calculations to process and integer digit. * @author 4 * @version 6 */ 7 public class SumDigits 8 { 9 /** 10 * Read a number as an integer, then sum each individual digit. * Do not read the number as a string. 11 12 */ 13 public static void main(String[] args) { System.out.println("Sum Digits"); System.out.println(": // INPUT // Dummy starter code. Replace with your IPO code. System.out.print("Enter a number from 0 to 1000: 999"); System.out.println(); System.out.println("\tSum of the digits is: 27"); } 14 15 16 "); 17 18 19 20 21 22 23 }
Interactions Console Compiler Output
Gilbert, Stephen: Sum Digits
==
Enter a number from 0 to 1000: 999
Sum of the digits is: 27
To calculate the digits you'll have to do several divisions and integer remainder (%)
operations. Notice that for any integer, n % 10 returns the value of the right-most digit,
and n / 10 returns a new number with the right-most digit discarded.
Transcribed Image Text:Interactions Console Compiler Output Gilbert, Stephen: Sum Digits == Enter a number from 0 to 1000: 999 Sum of the digits is: 27 To calculate the digits you'll have to do several divisions and integer remainder (%) operations. Notice that for any integer, n % 10 returns the value of the right-most digit, and n / 10 returns a new number with the right-most digit discarded.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Program on Numbers
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage