logo Practice-It logo

if/else simulation

Language/Type: Java if/else mystery
Author: Kimberly Todd (on 2010/12/28)

For each call of the method below, write the output that is produced, as it would appear on the console:

public static void mystery(int x, int y) {
    if (x > y) {
        x = x - 5;
        y = y + 5;
    }
    if (x < y) {
        x++;
        y--;
    } else {
        x = y * 2;
    }
    System.out.println(x + " " + y);
}

(Do not put quotes around your answers.)

mystery(4, 7);
mystery(3, 3);
mystery(10, 5);
mystery(20, 4);
mystery(1, 1);

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.