I have an int between 1 - 99. How do I get it to always be a double digit, ie: 01, 04, 21?
You can't do it just using an int. You'll have to convert between Strings (for display) and back to ints (for calculations). You can use the Java Formatter to format your Strings based on the input.