State the values of each of these int variables after the calculation is performed. Assumed that, when each statement begins executing, all variables have the integer value 5.
*= and /= operators do * and / operations with left and right operands and save result in the left operand.
++x and x++ are very differend. ++x means first increment x then use it in this calculation, x++ means use x in this calculation then increment it.