+ 2
How do I solve this in C++?
You meet a group of aliens, and their language is just like English except that they say every word backwards. How will you learn to communicate with them? Task: Take a word in English that you would like to say, and turn it into language that these aliens will understand. Input Format: A string of a word in English. Output Format: A string of the reversed word that represents the original word translated into alien language.
4 Answers
+ 4
Salam Tamam Kasm As already said a million times in other questions every day, pls always include in the question description a link to your code in Code Playground and an explanation of your difficulties. Do not ask for others to write code for you. At last, because it does not help you in learning.
+ 1
Emerson Prado some things wonât ever change đ
+ 1
You need just reverse the string, it's looks like this
input: hello
output: olleh
So what you didn't understand?