+ 1
How to reverse a word in a string having more than 2 vowels...
If my string is "abi abc" the output of the program should be "iba abc"...
1 Resposta
0
okay, thats kind of an odd request, but i recommend using the equivalent to the str.split() method in python, then working on the words one by one. some simple looping and result variables should get you there.