Show the output of the following code:
int a = 6;int b = a++;System.out.println(a);System.out.println(b);a = 6;b = ++a;System.out.println(a);System.out.println(b);
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.