CJCoding With Joseph

Count Digits in a Number (while)

The variable n holds the value 4587. Use a while loop to count how many digits it has, then print:

Digits: 4

Repeatedly divide n by 10 and count each step until n becomes 0.

Expected Output:

Digits: 4
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.