AC

root  •  2年前


include <bits/stdc++.h>

using namespace std; int main() {

char x[100000];
int i=0;
cin.getline(x,100000);
for( i=0;x[i]!='\0';i++);
for(int j=i-1;j>=0;j--)
cout<<x[j];
return 0;

}


评论:

请先登录,才能进行评论