Question: Write a program that prompts the user to input an integer and then outputs both the individual digits of the number ( see example below

Write a program that prompts the user to input an integer and then outputs both the individual digits of the number(see example below) and the sum of the digits.
The following variable names should be used and initialized to zero, where required.
num to hold the user input integer. digit to hold each respective digit of the integer. sum to hold the sum of the digits in the integer; Initialized to zero. pwr to hold the power of a digit; Initialized to zero.
For example, it should output the individual digits of:
3456 as 3456
8030 as 8030
2345526 as 2345526
4000 as 4000
-2345 as 2345
Task #01: Correct output for positive number test cases.
Task #02: Correct output for negative number test cases.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!