what is this?
int k = 1;
int i = ++k + k++ + + k ; //line 1
System.out.print(i+ " "+ k) ;
finally, i is 5 and k is 3.
why?
and if I change line 1 to int i = ++k+k++++k;
what is the result.
why
java allows the complicate and illogical thing to happen?
that is not good.