logo Practice-It logo

while loop mystery

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

Consider the following method.

public static void whileMystery(int n) { 
    int x = 0; 
    int y = 1; 
    while (n > x && n > y) { 
        n--; 
        x = x + 2; 
        y = y + x; 
    } 
    System.out.println(x);
}

For each call below, indicate what output is produced.

whileMystery(5);
whileMystery(10);
whileMystery(4);

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.