C++字符串插入函数(insert)

2023-12-13 08:55:26

1.在下标为n处插入y

#include <iostream>
#include <algorithm>
#include <string>
using namespace std;

string x,y;
int n;

int main()
{
	cin>>x>>y>>n;
	x.insert(n,y); //在下表为n处插入y
	cout<<x<<endl;

	return 0;
}

在这里插入图片描述
2…待续

文章来源:https://blog.csdn.net/weixin_47830774/article/details/134957395
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。