Buyrun buda derste yazdığım bir kod yine bu konuyla ilgi:

public class Lab4Prog1c {
public static void main(String[] args) {
int j = 0;
int i = j++ + j * 5;
System.out.println("What is i? " + i);
}
}