编写题解 2246: 蓝桥杯算法训练-字符串合并 摘要:解题思路:注意事项:参考代码:a=input()b=input()s=""for i in a: s+=ifor j in b: s+=jprint(s)…… 题解列表 2022年01月10日 0 点赞 0 评论 144 浏览 评分:6.0
蓝桥杯算法训练-字符串合并 摘要:### C++中的string类 ```c++ #include #include using namespace std; int main() { string a,b;…… 题解列表 2023年05月26日 0 点赞 0 评论 192 浏览 评分:0.0
2246: 蓝桥杯算法训练-字符串合并 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string str1,str2; c…… 题解列表 2023年10月27日 0 点赞 0 评论 95 浏览 评分:0.0