文章
25
粉丝
137
获赞
7
访问
130.2k
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
string str, opt, temp;
int n, i, len;
while (cin >> str) {
cin >> n;
while (n--) {
cin >> opt;
i = opt[1] - '0';
len = opt[2] - '0';
if (opt[0] - '0' == 0) {
temp = str.substr(i,len);
reverse(temp.begin(), temp.end());
str = str.substr(0,i) + temp +...
登录后发布评论
暂无评论,来抢沙发