logo Practice-It logo

while loop mystery

Language/Type: Java method basics mystery while loops
Author: Whitaker Brand (on 2010/12/28)

Given the following method:

public static int mystery(int i, int j) {
    int k = 0;
    while (i > j) {
        i = i - j;
        k = k + (i - 1);
    }
    return k;
}

Write the value returned by each of the following calls.

mystery(2, 9)
mystery(5, 1)
mystery(38, 5)
mystery(5, 9)
mystery(40, 10)

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.