0
there is not enough space to write correct answer,can anyone help me pls?
Fill in the missing part of the following code to divide x by 5 using the /= operator. int x = 10; x_=__; i can't write x /= x / 5 there is not enough space to write it.am i wrong? if i do like x/5 it says incorrect.
2 Answers
+ 4
The answer is already in the question.
>> Divide x by 5
>> Using the /= operator
+ 2
Dear bro ,as Genuine Stalwart said answer is already given in question
x = x/5;
It means
x /= 5;
So in first space put `/`
In second put `5`