I can get help on this. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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.

10th Feb 2020, 11:00 AM
Newton Isaac Ndede
Newton Isaac Ndede - avatar
2 Answers
+ 3
a /= 4 b /= 27 c /= 3 Is this what you were looking for?
10th Feb 2020, 11:16 AM
Avinesh
Avinesh - avatar
0
Am sorry that's not working at all.
12th Feb 2020, 11:02 AM
Newton Isaac Ndede
Newton Isaac Ndede - avatar