Assignments Assignment What it does x=y Sets x to the value of y x+=y Same as x=x+y x-=y Same as x=x-y x*=y Same as x=x*y x/=y Same as x=x/y x%=y Same as x=x%y