How in Java do you return the first digit of an integer.?
i.e.
345
Returns an int of 3.
Homework Hint: Convert it to a string and and return the first character.