1. 程式人生 > >ALGO-58 演算法訓練 字串逆序

ALGO-58 演算法訓練 字串逆序

 演算法訓練 字串逆序  

時間限制:1.0s   記憶體限制:512.0MB

    

問題描述

  給定一個字串,將這個串的所有字母逆序後輸出。

輸入格式

  輸入包含一個字串,長度不超過100,字串中不含空格。

輸出格式

  輸出包含一個字串,為上面字串的逆序。

樣例輸入

tsinsen

樣例輸出

nesnist

#include <iostream>
#include <algorithm> 
#include <string> 
using namespace std;

int main(int argc, char *argv[]) {
	string s;
	cin>>s;
	reverse(s.begin(),s.end());
	cout<<s<<endl;
	return 0;
}