Example int i=185;
Then I want to get that 'i' contains 3 digits and those digits are 1,8, and 5.
|
|
1st solution:
2nd solution:
|
|||||||||||
|
|
Hint: You need to take the modulus of the number by 10, to get the last digit. And then divide the same number by 10, do get the first two numbers. Repeat yourself as many times as required. |
|||
|
|
|
The easy way to do this is by converting to a locale-agnostic string, then looking at each character in the string. I am not giving the final solution in case this is homework, but here are some important APIs... Converting to string:
Handling negatives:
Length of a string:
Getting the i-th character of a string:
|
|||||
|
|
One way would be:
But i think you need something more generic? Try via string
And more advanced:
Then you can work on the set. |
|||||
|
|
The number of decimal digits is also given by Math.ceil(Math.log10(i)), for integral |
|||
|
|