0
I can get help on this.
The /= operator divides a variable by another number. myVar = myVar / 5; Will divide myVar by 5. This can be rewritten as: myVar /= 5; Convert the assignments for a, b, and c to use the /= operator. a should equal 4. b should equal 27. c should equal 3. You should use the /= operator for each variable. You should not modify the code above the specified comment.
2 Respuestas
+ 3
a /= 4
b /= 27
c /= 3
Is this what you were looking for?
0
Am sorry that's not working at all.