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 a, int b, int c) {
    if (a < b && a < c) {
        a = a + c;
        c++;
    } else if (a >= b) {
        a = a - b;
        b--;
    }
    if (a >= b && a >= c) {
        a++;
        c++;
    }

    System.out.println(a + " " + b + " " + c);
}
ifElseMystery(2, 10, 3);
ifElseMystery(8, 6, 1);
ifElseMystery(4, 6, 7);
ifElseMystery(20, 5, 5);

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.