Write a program that prompts the user to input an integer and then outputsboth t
ID: 3661382 • Letter: W
Question
Write a program that prompts the user to input an integer and then outputsboth the individual digits of the number and the sum of the digits. For example, the program should: output the individual digits of 3456 as 3456 and the sum as 18 , output the individual digits of 8030 as 8030 and thesum as 11 , output the individual digits of 2345526 as 2345526 and thesum as 27 , output the individual digits of 4000 as 4000 and the sum as 4 ,and output the individual digits of -2345 as 2345 and the sum as 14 .
Explanation / Answer
Output:
Sum of the digits are 11