Possible Duplicate:
Integer with leading zeroes
Can someone please tell me what is going on here? When I initialize an int with leading zeroes the program does not ignore the zeroes and instead does some other operation I am unaware of.
int num = 0200;
System.out.println(num); // 128
System.out.println(033); // 27