编写题解 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