发个最短题解吧。
#include<bits/stdc++.h> using namespace std; char ch[105]; int main(){ cin>>ch; for(int i=strlen(ch)-1;i>=0;i--) cout<<ch[i]; return 0; }