+ 1
How do you get the number of digit of an integer without using any String, concatenation, type casting; in java?
2 Antworten
+ 3
With integer division:
Count how often you can divide by 10 until you reach 0
+ 1
Post your code which you have tried