char reversevirkne(char virkne[]) {
int apgriests, x = 0;
for (int i = 0; virkne[i] != ''; i++) {
x++;
}
x--;
for (int j = x; j >= 0; j--) {
apgriests = (int)virkne[j];
std::cout << virkne[j];
}
std::cout << std::endl;
return 0;
}
This program turns all of the sentence to the opposite way. I need it to turn only the words so they would stay in there positions.
example:
- input:
hello world
- output:
olleh dlrow
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…