logo Practice-It logo

if/else simulation

Language/Type: Java if/else mod 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 a, int b) {
    if (a % 2 != 0) {
        a = a * 2;
    }
    if (a > 10) {
        b++;
    } else if (a < 10) {
        a--;
        b--;
    }

    System.out.println(a + " " + b);
}
ifElseMystery(12, 12);
ifElseMystery(7, 4);
ifElseMystery(5, 8);
ifElseMystery(3, 42);

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.