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
0
Answer:
10+25=35 Answer.
Explanation:
10
+25
35 Answer
Answered by
0
Answer:
62
27
Explanation:
a=a+(++b) =(b++)
so initially a is 10
a=62
b=27
Similar questions