3个回答
展开全部
可以通过下面的函数方法进行翻转:
#include<iostream>
#include <string>
using namespace std;
void main()
{tring str = "012345678";
//求出字符串的长度
int len = str.length();
for (int i = 0; i<len/2; i++)
{//前后交换
char temp = str[i];
str[i] = str[len-i-1];
str[len-i-1] = temp;}
//输出交换后的字符串
cout<<str<<endl;}
扩展资料:
另外一种方法:
利用C++标准库中通用算法,例子如下:
#include <string>
#include <algorithm>
int main(int argc, char*argv[])
{std::string str = "song";
reverse(str.begin(), str.end());
//do other things
return 0;}
展开全部
其实非常简单,楼上主要是用到了STL中的库函数,我们可以自己来实现:
#include<iostream>
#include <string>
using namespace std;
void main()
{
string str = "012345678";
//求出字符串的长度
int len = str.length();
for (int i = 0; i<len/2; i++)
{
//前后交换
char temp = str[i];
str[i] = str[len-i-1];
str[len-i-1] = temp;
}
//输出交换后的字符串
cout<<str<<endl;
}
#include<iostream>
#include <string>
using namespace std;
void main()
{
string str = "012345678";
//求出字符串的长度
int len = str.length();
for (int i = 0; i<len/2; i++)
{
//前后交换
char temp = str[i];
str[i] = str[len-i-1];
str[len-i-1] = temp;
}
//输出交换后的字符串
cout<<str<<endl;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
利用C++标准库中通用算法,例子如下:
#include <string>
#include <algorithm>
int main(int argc, char*argv[])
{
std::string str = "song";
reverse(str.begin(), str.end());
//do other things
return 0;
}
#include <string>
#include <algorithm>
int main(int argc, char*argv[])
{
std::string str = "song";
reverse(str.begin(), str.end());
//do other things
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询