CJCoding With Joseph

Recursive Reverse String Method

Write the static method Reverse so it returns its string parameter reversed, using RECURSION (no loops). The base case is a string of length 0 or 1, which is returned as-is; otherwise reverse everything after the first character and append the first character to the end. The tester calls it and prints the result. Do NOT write a Main method.

For Reverse("hello") the program prints exactly:
olleh

Expected Output:

olleh
Topics:
Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.