while loop mystery
Fill in the boxes at right with the output produced by each method call.
public static void mystery(int x) {
int y = 1;
int z = 0;
while (2 * y <= x) {
y = y * 2;
z++;
}
System.out.println(y + " " + z);
}
|
|