Question: **Java Language only** I Need the following code to be orginal with all the specific rules to be followed. Also I need java Doc on
**Java Language only**
I Need the following code to be orginal with all the specific rules to be followed. Also I need java Doc on the code with regular comments and Pseduo code explaining what the code does and the specific things that you did to make the code run.
The code needs to be copy pasable into text-pad
If you cant follow all these instructions DON'T do the code.
I will thumbs up good work Thnaks!!

9. Ackermann's Function Ackermann's function is a recursive mathematical algorithm that can be used to test how well a computer performs recursion. Write a method ackermann(m, n), which solves Ackermann's function. Use the following logic in your method: If m = 0 then return n + 1 If n - 0 then return ackermann(m -1, 1) Otherwise, return ackermann (m -1, ackermann(m, n 1) 1074 Chapter 16 Recursion Test your method in a program that displays the return values of the following method calls: ackermann(1,1) ackermann (3, 2) ackermann(1, 2) ackermann (0, 0) ackermann(1, 3)ackermann (2, 2) ackermann (0, 1)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
