Link to home
Start Free TrialLog in
Avatar of Manish
ManishFlag for India

asked on

Convert single digit to double digit

Hi
  I want to convert single digit integer to double digit. Is there any simple method?
I want output like
 0  -00
1- 01
11- 11

Thanks
Karan
Avatar of Manish
Manish
Flag of India image

ASKER

double digit string will do.
ASKER CERTIFIED SOLUTION
Avatar of sciuriware
sciuriware

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sciuriware
sciuriware

Likewise: output.printf("%02d", i);

Assuming 'output' is a PrintWriter object or such.

;JOOP!
Avatar of Manish

ASKER

Thanks.