文字列の入れ替えのみ。
/*************************
* 2012/03/21
* AOJ Volume0 0006
* Reverse Sequence
* crane
**************************/
#include<algorithm>
#include<string>
#include<iostream>
using namespace std;
int main(){
string input;
cin >> input;
reverse(input.begin(),input.end());
cout << input << endl;
return 0;
}
0 件のコメント:
コメントを投稿