数据结构-字符串连接(C语言) 摘要: #include #include int main(){ char a[500],b[500]; while(scanf("%s %s…… 题解列表 2022年07月16日 0 点赞 0 评论 291 浏览 评分:0.0
编写题解 1687: 数据结构-字符串连接 摘要:解题思路:注意事项:参考代码:a,b = map(str,input().split())c,d = map(str,input().split())e,f = map(str,input().spl…… 题解列表 2021年11月30日 0 点赞 0 评论 203 浏览 评分:0.0
编写题解 1687: 数据结构-字符串连接 摘要:编写题解 1687: 数据结构-字符串连接 ``` #include using namespace std; int main() { string s1,s2; for(int …… 题解列表 2023年02月15日 0 点赞 0 评论 87 浏览 评分:0.0
数据结构-字符串连接-题解(C++代码) 摘要:```cpp #include #include using namespace std; string unionstring(string str1, string str2) { …… 题解列表 2020年06月06日 0 点赞 0 评论 329 浏览 评分:0.0
数据结构-字符串连接(C语言) 摘要:解题思路:第一个字符串指针指向'\0',双指针进行赋值,当第一个字符串100个字符复制完成,但是第二个字符串的指针尚未指向'\0',此时说明第二个字符串在连接过程中被截…… 题解列表 2021年04月07日 0 点赞 0 评论 221 浏览 评分:0.0
Hifipsysta-1687-数据结构-字符串连接(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ string mystr; while(getlin…… 题解列表 2022年02月12日 0 点赞 0 评论 166 浏览 评分:0.0
数据结构-字符串连接 (C语言代码) 摘要:解题思路:注意事项:字符串不超过100,则数组长度应该定为101(或者更大),因为要给'\0'留一个位置。参考代码:#include<cstdio>int main(){ char s…… 题解列表 2019年01月30日 0 点赞 1 评论 510 浏览 评分:0.0
数据结构-字符串连接 题解 摘要:解题思路:直接输入后连接,最后输出。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string a,b;int main(){ for(…… 题解列表 2022年05月06日 0 点赞 0 评论 149 浏览 评分:0.0
字符串连接 摘要:解题思路:每一行用足够长的字符数组,第一次scanf记录前面的字符串,用char型指针指向已记录字符数组的后一个元素(连接),再scanf一次记录后一个字符串,len记录的始终是整个字符串的长度注意事…… 题解列表 2021年06月11日 0 点赞 0 评论 208 浏览 评分:0.0
数据结构-字符串连接(C语言) 摘要:#include<stdio.h> #include<string.h> int main() { char str1[100],arr1[100]; char str2[100], a…… 题解列表 2023年01月06日 0 点赞 0 评论 47 浏览 评分:0.0