题目链接:
解题思路:
s.insert(n,1,c);//这里必须要有要插入字符的个数 1
方法一(利用关键字 insert()):
#include<bits/stdc++.h>
using namespace std;
int main( )
{
string s;
getline(cin,s);
int n = 0;
char c = '0';
cin >> n >> c;
s.insert(n,1,c);//这里必须要有要插入字符的个数 1
cout << s;
return 0;
}
文章评论