#include <cstdlib>
#include <string>
#include <iostream>
#include <thread>
#include <array>
using namespace std;
int main(int argc, char *argv[])
{
string str;
cin>>str;
string rstr;
rstr.replace(rstr.begin(), rstr.end(),str.rbegin(),str.rend());
cout<<rstr;
while(1);
return EXIT_SUCCESS;
}C++字符串逆排序
最新推荐文章于 2024-08-27 08:45:24 发布

1386

被折叠的 条评论
为什么被折叠?



