logo CodeStepByStep logo

You are working on problem set: Unit 4 ( Pause)

recursionMystery2

Language/Type: Java recursion

For each of the calls to the following recursive method below, indicate what output is produced:

public static void recursionMystery2(int n) {
    if (n <= 1) {
        System.out.print(": ");
    } else {
        System.out.print((n % 2) + " ");
        recursionMystery2(n / 2);
        System.out.print(n + " ");
    }
}
recursionMystery2(8);
recursionMystery2(25);
recursionMystery2(46);

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? .

If something seems wrong with our site, please

Is there a problem? Contact us.