写出一个程序,接受一个字符串,然后输出该字符串反转后的字符串。例如:
输入描述:输入N个字符
输出描述:输出该字符串反转后的字符串
输入例子:abcd
输出例子:dcba
1 #include <iostream> 2 #include <string> 3 4 using namespace std; 5 6 int main() 7 { 8 string str; 9 cin >> str; 10 for(int i = str.size()-1; i >=0;i--) 11 cout << str[i]; 12 }
1 #include<iostream> 2 #include<string> 3 #include<algorithm> 4 using namespace std; 5 6 7 8 int main() 9 { 10 string str; 11 while (cin >> str) 12 { 13 reverse(str.begin(), str.end()); 14 cout << str<<endl; 15 } 16 }