T5
2024-12-11 10:55:58
发布于:美国
2阅读
0回复
0点赞
T5
本题先读入 然后利用一个小技巧,s = " " + s
,这样 的下标就从 开始了,所以我们只需要输出下标从 的字符即可。
#include <bits/stdc++.h>
using namespace std;
int main(){
string s;
int a, b;
cin >> s >> a >> b;
s = " " + s;
for(int i = a; i <= b; i ++ ){
cout << s[i];
}
return 0;
}
这里空空如也
有帮助,赞一个