CJCoding With Joseph

Recursive String Reverse

Write a recursive method reverse(String s) that returns the string with its characters in reverse order. When s is empty return s; otherwise return reverse(s.substring(1)) + s.charAt(0). Call it with "hello" and print the result:

olleh

Use System.out.println.

Expected Output:

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

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.