题解 1032: [编程入门]自定义函数之字符串连接

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1032: [编程入门]自定义函数之字符串连接

摘要:解题思路:省事的方法有str.cat()函数,string.append()函数等等,直接一个函数搞定,为了理解原理我还是用了for循环,即把str2[ ]的字符一个个放到str1[ ]的后面。注意事……

自定义函数之字符串连接

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;void tap(string s1,string s2){    cout<<s1……

字符串连接

摘要:```cpp #include using namespace std; int main() { string s,t; getline(cin,s); getline(……