int n = 5;
n = n++;
System.out.println(n);

Well, this prints out 5, can anyone explain please? Thanks!