Computer Science, asked by kumariprincy835, 3 months ago

if x=48, y= 13 thеn find x+= y++ +5/
X++ + y[1]
79
65
71
63​

Answers

Answered by iabhino79
1

Answer:

int x=48,y=13;

int z=y++*5/x++ +y;

// z = 13*5/48 +14

// z = 65/48 + 14

// z = 1 + 14

System.out.print(z); // 15

Similar questions