編寫程序,輸入字符串S1和S2 以及插入位置n,在字符串S1中的指定位置n處插入字符串S2。例如,輸入“jiangsu”、“123”和位置3,則輸出“ji123angsu”。
#include <iostream>
#include <string>
using namespace std;
int main()
{
string str1;
string str2;
int pos;
do
{
if ((cin >> str1 >> str2 >> pos) && (pos >= 1))
{
str1.insert(pos - 1, str2);
cout << str1 << endl;
}
else
{
cout << "Invalid Input" << endl;
break;
}
} while (false);
return 0;
}