to_string函数 #inlcude 功能:将数字转化为字符串 例如: #include #include using namespace std; int main() { long long a, b, c; char d, f; string s; a = 10; s = to_string(a); cout << s[0]; return 0; } 输出 1 ; insert函数: 使用格式str1=str1(被插入字符串).insert(插入位置,str2(被插入字符串),n ,m)。 ps:n,m分别是插入字符串要截取的(真正要插入的部分)即在str2.n位置数m...