有多种方法可以实现C++字符串的逆序输出,以下是两种常见的方法:
方法一:使用循环逆序输出
#include
#include
int main() {
std::string str = "Hello, World!";
// 使用循环从字符串末尾开始逐个输出字符
for (int i = str.length() - 1; i >= 0; i--) {
std::cout << str[i];
}
return 0;
}
方法二:使用递归逆序输出
#include
#include
void reverseString(const std::string& str, int index) {
if (index < 0) {
return;
}
// 递归地输出字符
std::cout << str[index];
reverseString(str, index - 1);
}
int main() {
std::string str = "Hello, World!";
// 调用递归函数开始逆序输出
reverseString(str, str.length() - 1);
return 0;
}
无论使用哪种方法,以上代码都将输出字符串"Hello, World!"的逆序形式:"!dlroW ,olleH"。