How to write the reverse of any string. | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

How to write the reverse of any string.

suppose the input is "This is a Book" the output will be-"kooB a si sihT"

1st Dec 2017, 4:13 PM
Ashit Pradhan
Ashit Pradhan - avatar
1 ответ
+ 6
String text = new StringBuilder("This is a Book").reverse().toString(); StringBuffer instead StringBuilder also works.
1st Dec 2017, 4:40 PM
andreolixam
andreolixam - avatar