I have a code like this, but I don't know why result variable have false value after execution the code
int x = 234;
boolean result = (x<0250);
and also why the following code doesn't work properly?
System.out.println(0250);
it prints 168 !! why?!