从键盘输入任意的一个字符串 AA,其长度 LL 不小于 66,同时再输入一个整数 NN(其中:N<LN<L)作为插入点,以及任意的一个字符串 BB,其长度为 L_1L1(其中:L_1<LL1<L),现要求完成下列功能:
输入格式
输入包括三行:
输出格式
a
的位置;格式说明
输出时每行末尾的多余空格,不影响答案正确性
样例输入
ABCDabcdaxy
4
hello
复制
样例输出
11
5
ABChelloDabcdaxy
#include <iostream> #include <string> using namespace std; int main() { string a,b; int n; cin>>a>>n>>b; cout<<a.size()<<endl; cout<<a.find("a")+1<<endl; cout<<a.insert(n-1,b)<<endl; return 0; }