
public class Increment {

	public static void main(String[] args) {
		int x = 6;
		//don't do this: x =(x++) + 5;
		
		//x /= 8.0;
		System.out.println(x);
		
		System.out.println(x++); //use old value of x to print
		System.out.println(++x);
	}

}
