logo Practice-It logo

if/else simulation

Language/Type: Java if/else mod mystery
Author: Marty Stepp (on 2020/04/15)

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

        public static void ifElseMystery(int a, int b) {
            if (a > b || a % 2 == 0) {
                a++;
                b--;
            } else if (a % 2 == 1) {
                b = 0;
            }
            if (b == 0 && b != a) {
                a = a + 2;
                b = a - 2;
            }
            System.out.println(a + " " + b);
        }
ifElseMystery(5, 20);
ifElseMystery(42, 42);
ifElseMystery(6, 1);
ifElseMystery(2, 0);
ifElseMystery(7, 10);
ifElseMystery(4, 4);

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.