Question: Write a program that prompts the user to input an integer (not a String) and then outputs both the individual digits of the number and
Write a program that prompts the user to input an integer (not a String) and then outputs both the individual digits of the number and the sum of the digits. For example, the program should: output the individual digits of 3456 as 3 4 5 6 and the sum as 18, output the individual digits of 2345526 as 2 3 4 5 5 2 6 and the sum as 27, and output the individual digits of -2345 as 2 3 4 5 and the sum as 14.
Java
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
