#include <bits/stdc++.h> using namespace std; int main(){ string a; while(cin >> a){ for(int i = a.length()-1;i>=0;i--){ cout << a[i] ; } cout << endl; } }
做这题有点浪费时间了,主要是注意length()-1