In java, I want to do 102%100 and get the remainder as 02 and not as 2.. How do i do that?
int a = (102%100);
a returns 2 and not 02.. I want to get 02.. because originally, it's supposed to be 1.02, but mod returns 2. :( Anybody know how to do that?