CJCoding With Joseph

Sum of Digits (while)

The variable n holds 1234. Use a while loop to add up its digits (1 + 2 + 3 + 4) and print:

Sum of digits: 10

Use n % 10 to grab the last digit and n /= 10 to remove it.

Expected Output:

Sum of digits: 10
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.