โ Back to Loops
Question 300
Sum of Digits (while)
Sum of Digits (while)
The variablenholds1234. Use awhileloop to add up its digits (1 + 2 + 3 + 4) and print: Sum of digits: 10 Usen % 10to grab the last digit andn /= 10to 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.