The /= operator divides a variable by another number.
myVar =
myVar / 7;
will divide myVar by 7. This can be rewritten as:
myVar /=
7;
Exercices
Convert the assignments for a, b, and c to use the /= operator.
= a / 12
;
= b / 4
;
= c / 11
;