logo CodeStepByStep logo

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

recursionMystery348

Language/Type: Java recursion

Given the method below, what is the output of the following call? (What is the method really doing?)

public static int mystery(int n) {
    if (n < 10) {
        return (10 * n) + n;
    } else {
        int a = mystery(n / 10);
        int b = mystery(n % 10);
        return (100 * a) + b;
    }
}
mystery(348);
(order shuffled)

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.