L1-094 剪切粘贴 分数 15 #include <bits/stdc++.h> using namespace std; string func(string s, int x, int y, string s1, string s2) { x--,y--; string mid(s,x,y-x+1); s.erase(x,y-x+1); string tar = s1 + s2;