题解 1722: 字符串连接

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

筛选

字符串连接-题解(C语言代码)

摘要:思路:接收两个字符串,输出两个字符串(非真正连接,仅在输出时两个字符串一起输出) 参考代码: ``` #include int main() { char a[100]={'0'},b……

字符串连接

摘要:解题思路:   注意事项:   参考代码:#include<bits/stdc++.h>using namespace std;int main(){    string a, b;    cin>>……

简单实现字符串连接

摘要:解题思路:个人思路比较简单(可能我比较菜)注意事项:每完成一次连接,最后一个字符要变成&#39;\0&#39;参考代码:#include<stdio.h>#include<string.h>conne……

871da84df5s6af4ads\

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string a,b; while(cin>>a>>b) {……

字符串连接——python

摘要:解题思路:注意事项:参考代码:while True:    try:        a,b = map(str,input().split())        print(a+b)    except……

C++字符串连接

摘要:# string ```c++ #include using namespace std; int main() { string a,b; while(cin>……