你好,以下使用了string类以及反向枚举器实现逆序输出:
#include
#include
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
#include
int main( void )
{
char s[81];
scanf("%s",s);
printf("%s\n",strrev(s));
return 0;
}
//vs2005调试通过
string方法 -- C++
#include
#include
using namespace std;
int main()
{
string x;
int L;
cout<<"Please enter a string:"<
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;
}