logo CodeStepByStep logo

ifElseMystery2

Language/Type: Java if/else mod mystery

For each call to the following method, 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

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.