+ 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.

29th Apr 2023, 8:41 PM
Salam Tamam Kasm
Salam Tamam Kasm - avatar
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.
29th Apr 2023, 11:02 PM
Emerson Prado
Emerson Prado - avatar
+ 1
Emerson Prado some things won’t ever change 😓
30th Apr 2023, 7:29 AM
Ugulberto SĂĄnchez
Ugulberto SĂĄnchez - avatar
30th Apr 2023, 7:37 AM
Ugulberto SĂĄnchez
Ugulberto SĂĄnchez - avatar
+ 1
You need just reverse the string, it's looks like this input: hello output: olleh So what you didn't understand?
30th Apr 2023, 9:30 AM
Smith Welder
Smith Welder - avatar