i have tried this ,found the questions
public class Baz {
public static void main(String[] args) {
int num = 5;
for(int i=0 ;i < 4 ; i++) {
num = num++;
}
System.out.println("Value is :" + num);
}
}
the result print Values is 5, What happen ?