Computer Science, asked by ts8745909, 5 hours ago

Write the output of the following: int a=10, b=25; a += ++b +b++; System.out.println(a); System.out.println(b);

Answers

Answered by mauryao451
0

Answer:

10+25=35 Answer.

Explanation:

10

+25

35 Answer

Answered by manepallinages14
0

Answer:

62

27

Explanation:

a=a+(++b) =(b++)

so initially a is 10

a=62

b=27

Similar questions