โ Back to Methods
Question 375
Recursive String Reverse
Recursive String Reverse
Write a recursive methodreverse(String s)that returns the string with its characters in reverse order. Whensis empty returns; otherwise returnreverse(s.substring(1)) + s.charAt(0). Call it with"hello"and print the result: olleh UseSystem.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.