输入一个字符串,把其中的字符按逆序输出。如输入LIGHT,输出THGIL。要求用string方法。
4个回答
展开全部
你好,以下使用了string类以及反向枚举器实现逆序输出:
#include <string>
#include <iostream>
using namespace std;
void main()
{
string str;
cout<<"请输入字符串:";
cin>>str;
// 获得反向的枚举器,反向遍历
string::reverse_iterator iter = str.rbegin();
cout<<"输出字符串:"
while(iter!=str.rend())
{
cout<<*iter;
iter++;
}
getchar();
}
#include <string>
#include <iostream>
using namespace std;
void main()
{
string str;
cout<<"请输入字符串:";
cin>>str;
// 获得反向的枚举器,反向遍历
string::reverse_iterator iter = str.rbegin();
cout<<"输出字符串:"
while(iter!=str.rend())
{
cout<<*iter;
iter++;
}
getchar();
}
展开全部
#include <stdio.h>
#include<string>
int main( void )
{
char s[81];
scanf("%s",s);
printf("%s\n",strrev(s));
return 0;
}
//vs2005调试通过
#include<string>
int main( void )
{
char s[81];
scanf("%s",s);
printf("%s\n",strrev(s));
return 0;
}
//vs2005调试通过
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string方法 -- C++
#include<iostream>
#include<string>
using namespace std;
int main()
{
string x;
int L;
cout<<"Please enter a string:"<<endl;
cin >> x;
L = x.length();
while ( L > 0){
L--;
cout << x.at(L);
}
return 0;
}
#include<iostream>
#include<string>
using namespace std;
int main()
{
string x;
int L;
cout<<"Please enter a string:"<<endl;
cin >> x;
L = x.length();
while ( L > 0){
L--;
cout << x.at(L);
}
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string reverse(const string& s)
{
int start=0;
int end=s.length();
string temp(s);
while(start< end){
swap(temp[start],temp[end]);
start++;
end--;
}
return temp;
}
void swap(char& v1,char& v2)
{
char temp=v1;
v1=v2;
v2=temp;
}
{
int start=0;
int end=s.length();
string temp(s);
while(start< end){
swap(temp[start],temp[end]);
start++;
end--;
}
return temp;
}
void swap(char& v1,char& v2)
{
char temp=v1;
v1=v2;
v2=temp;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询