2246: 蓝桥杯算法训练-字符串合并 摘要:两字符串直接相加。#include<bits/stdc++.h> using namespace std; int main(){ string a,b; getline(…… 题解列表 2022年01月02日 0 点赞 0 评论 245 浏览 评分:0.0
蓝桥杯算法训练-字符串合并 摘要:### C++中的string类 ```c++ #include #include using namespace std; int main() { string a,b;…… 题解列表 2023年05月26日 0 点赞 0 评论 250 浏览 评分:0.0
2246: 蓝桥杯算法训练-字符串合并 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string str1,str2; c…… 题解列表 2023年10月27日 0 点赞 0 评论 131 浏览 评分:0.0
字符串合并-strcat 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>intmain(){ chars[2…… 题解列表 2025年02月23日 1 点赞 0 评论 102 浏览 评分:0.0
题解 2246: 蓝桥杯算法训练-字符串合并 文章 > 编写题解 摘要:解题思路:加起来就行了。注意事项:参考代码:#include <iostream>#include<algorithm>#include <string>#incl…… 题解列表 2025年04月10日 0 点赞 0 评论 49 浏览 评分:0.0