I am working on a java program and I need to store some integers starting from 0 to 16 as 00, 01 and so on...
Now when I store '09' for 9 or '08' for 8 it starts giving me error.
From this and this question I know that it is octal notation.
My question is :
IS there a way to store 08 or 09 in integer in JAVA?
I HAVE to store numbers as 00, 01 .. only what is alternative?
Thanks a lot!