CJCoding With Joseph

Reverse a String with StringBuilder

The string s = "hello" is given. Use a StringBuilder to reverse it and print the result:

olleh

Use new 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.