Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

353
Views
Having trouble reading a simple recursion code(JAVA)

Hello I am studying recursion and having trouble reading the following code below

public class MysteryClass {

/**
 * Mystery method that performs a function recursively.
 *
 * @param x an integer > 0
 * @param y an integer > 0 and < x
 * prints result
 */
    public static void mysteryMethod(int x, int y) {
        if (x == 0) {
            return;
        } else {
            mysteryMethod(x / y, y);
            System.out.print(x % y);
        }
    }

    public static void main(String[] args) {
        mysteryMethod(13,2);
    }
}

I had two possible solutions(and realized both are wrong)

Solution 1

  1. x = 13, y = 2, print(13 % 2) which is 1
  2. x = 6 , y = 2, print( 6 % 2) which is 0
  3. x = 3 , y = 2, print( 3 % 2) which is 1
  4. x = 1 , y = 2, print( 1 % 2) which is 1
  5. x = 0 , y = 2, since x == 0, return nothing and stop recursion.

therefore 1011

Solution 2

  1. x = 13, y = 2, mysteryMethod(13 / 2, 2) which is mysteryMethod(6, 2) since 6 != 0 go to next step
  2. x = 6 , y = 2, mysteryMethod(6 / 2, 2) which is mysteryMethod(3, 2) since 3 != 0 go to next step
  3. x = 3 , y = 2, mysteryMethod(3 / 2, 2) which is mysteryMethod(1, 2) since 1 != 0 go to next step
  4. x = 1 , y = 2, mysteryMethod(1 / 2, 2) which is mysteryMethod(0, 2) since 0 == 0 return nothing and stop recursion.

therefore return nothing

but the correct answer was 1101

Can anyone have a look at the code and explain me why 1101 is the correct answer and why my solutions are wrong?

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

That is because you did the recursion then print the number, you should print the number then recursion, that is:

public static void mysteryMethod(int x, int y) {
        if (x == 0) {
            return;
        } else {
            System.out.print(x % y);//exchange the position of the two lines of code
            mysteryMethod(x / y, y);
        }
    }

In you code, you're printing the number backward...

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!