+ 1
Can anyone explain me this code?
int a = 5; int b = 3; System.out.print(a++ + b++); System.out.print(a + 1 + b); System.out.print(--a + --b); output: 8118
2 Answers
+ 6
// You use the increment and decrement in the code.
https://www.sololearn.com/learn/Java/2141/?ref=app
+ 8
SL have a Code playground to practice,
Try to use the println() method and you will see the result for each line of code,
with the print() method you get the result in one line!
Pay attention to using increment: ++, and decrement: --, operators.
The prefix and postfix increment both increase the value of a number by 1.
The only difference between the two is their return value. The former increments (++) first, then returns the value of x, thus ++x. The latter returns the value of x first, then increments (++), thus x++.