Computer Science, asked by sewlide87, 5 months ago

If k= 8, w=12, r=6
int w= k*(w++/3)+(k+(--r+r++))​

Answers

Answered by harneetmakkad27
3

Answer:

w = 51

Explanation:

as int w= 8*(12++/3)+(8+(--6+6++))

8*(4)+(8+(11))

32+19

w=51;

hope it helped

Similar questions