x-=--x+ ++x - --x*2 if x = 6
Answers
Answered by
1
Explanation:
x = 3;
x = ++x + (++x);
++x would increase ‘x’ by one and use this value. If you add 1 to the current value of x, which is 3, then you have 4.
x = 4 + (++x);
++x would increase ‘x’ by one again and use (again) this value. If you add 1 to the current value of x, which is 4, then you have 5.
x = 4 + (5);
Sum the remainders, and the solution of your question would be:
x = 9.
Similar questions
Science,
3 months ago
Social Sciences,
3 months ago
Accountancy,
7 months ago
Science,
7 months ago
Chemistry,
11 months ago
English,
11 months ago
Physics,
11 months ago