logo Practice-It logo

BJP5 Self-Check 2.16: valuesOfIJK

Language/Type: Java basics mystery variables
Author: Marty Stepp (on 2019/09/19)

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

If you do not understand how to solve a problem or why your solution doesn't work, please contact your TA or instructor.
If something seems wrong with the site (errors, slow performance, incorrect problems/tests, etc.), please

Is there a problem? Contact a site administrator.