Addition: The compound assignment operator for addition is "+=". It adds the value on the right side of the operator to the current value of the variable and assigns the result back to that variable.
Subtraction: The compound assignment operator for subtraction is "-=". It subtracts the value on the right side of the operator from the current value of the variable and assigns the result back to that variable.
Division: The compound assignment operator for division is "/=". It divides (integer division) or divides and assigns (floating-point division) by dividing the value on the right side of the operator from the current value of the variable and assigns the result back to that variable.