Computer Science, asked by debrup1902, 8 months ago

Write the output from below

int a=5,b=10;

a-=a++ - - -b + a++;

System.out.println(a+”,”+b);​

Answers

Answered by mehermanoj76
1

Answer:

6+,+10

Explanation:

1st b decrease to 9 then add 5 and 5

then answer decrease from a

continue like this we get final answer

Similar questions