logo CodeStepByStep logo

ifElseMystery2

Language/Type: C++ if/else mod

For each call to the following function, indicate what output is produced.

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;
    }
    cout << a << " " << b << endl;
}
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.