โ Back to Miscellaneous
Question 402
Reverse a String with StringBuilder
Reverse a String with StringBuilder
The strings = "hello"is given. Use aStringBuilderto reverse it and print the result: olleh Usenew StringBuilder(s).reverse().toString()rather than writing your own loop.
Expected Output:
olleh
Topics:
Miscellaneous
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.