logo CodeStepByStep logo

valuesOfIJK

Language/Type: Java basics mystery variables

What are the values of i, j, and k after the following code statements?

int i = 2;
int j = 3;
int k = 4;
int x = i + j + k;
i = x - i - j;
j = x - j - k;
k = x - i - k;
i
j
k

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.