I need some help writing code for the collatz theory in JAVA!!!?
-
this is my method: I would like to now add a counter that will count the numberof steps it took to reach the number 1. like for example, if the input number was 1, it would have done 0 steps because 1 is the number it wants. if it was 2, it would take that even number and divide by 2 which makes 1, which took exactly 1 step. im not sure how to include that into my program as i have never written a counter before. thanks for your help in advance public static int collatz(int given) { if (given == 1) return given; else if (given % 2 == 0) collatz(given / 2); else collatz(3 * given + 1); return given; }
-
Answer:
donno what the collatz theory is, but I think you would be interested in returning the counter rather than the number being processed in each recursive call. meaning: wheres your counter? You should have a counter and increment it each time you call. Thats how you will know the number of steps it took to reach 1
sidd0123 at Yahoo! Answers Visit the source
Other answers
add a second parameter that is the counter, you can have more then 1 variable in a recursive function.
Related Q & A:
- I need desperate help.Best solution by Yahoo! Answers
- I need Ebay help.Best solution by Yahoo! Answers
- I need some help about yahoo answers.Best solution by Yahoo! Answers
- I need tips for writing a song.Best solution by Yahoo! Answers
- I really need some help writing my personal statement for a nursing program.Best solution by cmu.edu
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.