logo Practice-It logo

while loop mystery

Language/Type: Java method basics mod mystery while loops
Author: Eric Spishak (on 2010/12/28)

Consider the following method.

public static void mystery(int n) {
    int x = 1;
    int y = 2;
    while (y < n) {
        if (n % y == 0) {
            n = n / y;
            x++;
        } else {
            y++;
        }
    }
    System.out.println(x + " " + n);
}

For each call below, indicate what output is produced.

mystery(2);
mystery(5);
mystery(24);
mystery(28);

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.