1687: 数据结构-字符串连接 vector 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义一个字符向量q1,用于存储拼接后…… 题解列表 2024年12月05日 0 点赞 0 评论 59 浏览 评分:0.0
C++ 数据结构 字符串连接 摘要: #include #include using namespace std; int main() { string a,b; string c[3]; f…… 题解列表 2023年09月12日 0 点赞 0 评论 183 浏览 评分:9.9
编写题解 1687: 数据结构-字符串连接 摘要:编写题解 1687: 数据结构-字符串连接 ``` #include using namespace std; int main() { string s1,s2; for(int …… 题解列表 2023年02月15日 0 点赞 0 评论 86 浏览 评分:0.0
数据结构-字符串连接 题解 摘要:解题思路:直接输入后连接,最后输出。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string a,b;int main(){ for(…… 题解列表 2022年05月06日 0 点赞 0 评论 148 浏览 评分:0.0
Hifipsysta-1687-数据结构-字符串连接(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ string mystr; while(getlin…… 题解列表 2022年02月12日 0 点赞 0 评论 165 浏览 评分:0.0
1687: 数据结构-字符串连接 摘要:#include<bits/stdc++.h> using namespace std; int main(){ string a,b; while(cin>>a>>b){ …… 题解列表 2021年12月23日 0 点赞 0 评论 169 浏览 评分:0.0
数据结构-字符串连接-题解(C++代码) 摘要:```cpp #include #include using namespace std; string unionstring(string str1, string str2) { …… 题解列表 2020年06月06日 0 点赞 0 评论 327 浏览 评分:0.0
数据结构-字符串连接 (C++代码)----momoc 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main () { string a ,b; for(…… 题解列表 2019年05月23日 1 点赞 0 评论 345 浏览 评分:0.0
数据结构-字符串连接 (C++代码)可AC 摘要:解题思路:运用string函数的性质如 string string1="123" , string2="456"; string1+=string2; 则 string1="123456";注…… 题解列表 2018年08月08日 4 点赞 0 评论 1025 浏览 评分:6.5