logo Practice-It logo

if/else simulation

Language/Type: Java if/else mystery
Author: Marty Stepp (on 2010/12/28)

For each call of the method below, write the output that is produced:

public static void ifElseMystery(int x, int y) {
    if (x == y) {
        x = x + 11;
    } else if (x > 2 * y) {
        x = 0;
    }
    if (x == 0 || y > x) {
        x = x + 2;
        y = y + 2;
    }
    
    System.out.println(x + " " + y);
}
ifElseMystery(5, 5);
ifElseMystery(18, 4);
ifElseMystery(3, 6);

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.