This is a beta version of Practice-It. Give us feedback

logo Practice-It logo

if/else simulation

Language/Type: Java if/else mod mystery
Author: Marty Stepp (on 2018/05/01)

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

public static void ifElseMystery(int a, int b) {
    if (a % 10 == 0) {
        b = b * 10;
        a = a + 10;
    }   
    if (a > b) {
        b = a;
    } else if (a == b) {
        b++;
    }
    System.out.println(a + " " + b);
}
ifElseMystery(20, 8);
ifElseMystery(30, 30);
ifElseMystery(4, 3);
ifElseMystery(30, 4);
ifElseMystery(7, 7);

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.