0
La operación
Int x 14; System.out.print(x++); Result = 14
1 Odpowiedź
+ 11
x++ is post incrementing so the doesn't increments the value at first
It initializes it.
So the answer will me 14 itslef.
If it had been ++x than the answer is 15
Int x 14; System.out.print(x++); Result = 14