logo Practice-It logo

ifElseMystery2

Language/Type: Java if/else method basics mod mystery
Author: Kimberly Todd

Consider the following method. For each call below, indicate what output is produced.

public static void mystery2(int a, int b) {
    if (a % b == 0) {
        a = a / b;
        if (a < b) {
            b = b - a;
        }
    } else if (b % 2 == 0) {
        b = b / 2;
    } else {
        a = a - b;
    }
    System.out.println(a + " " + b);
}
mystery2(20, 4);
mystery2(7, 6);
mystery2(14, 7);
mystery2(24, 8);
mystery2(13, 9);

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.