字符串连接-题解(C语言代码) 摘要:思路:接收两个字符串,输出两个字符串(非真正连接,仅在输出时两个字符串一起输出) 参考代码: ``` #include int main() { char a[100]={'0'},b…… 题解列表 2020年02月19日 0 点赞 0 评论 394 浏览 评分:0.0
字符串连接 (C++代码)STL<string> 摘要:解题思路:使用c++的STL注意事项:无参考代码:#include <iostream>#include <string>using namespace std;int main(){ stri…… 题解列表 2018年04月23日 0 点赞 0 评论 621 浏览 评分:6.0
字符串连接 摘要:解题思路: 注意事项: 参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string a, b; cin>>…… 题解列表 2021年11月26日 0 点赞 0 评论 239 浏览 评分:6.0
字符串连接 (C++代码)可AC 摘要:解题思路:用string 的性质就可以解决了注意事项:参考代码:#include <iostream> #include <string> using namespace std; int ma…… 题解列表 2018年08月08日 1 点赞 0 评论 581 浏览 评分:6.0
字符串连接-题解(C语言代码) 摘要:小白成长之路之简单粗暴解题 ```c # include int main() { int a[100],b[100]; while(scanf("%s%s",&a,&b)!=EOF)…… 题解列表 2019年10月23日 0 点赞 1 评论 727 浏览 评分:9.0
字符串连接 (C语言代码) 摘要:解题思路:没什么好说的,上代码注意事项:参考代码:#include<stdio.h>int main(){ char str1[110]; char str2[110]; wh…… 题解列表 2019年02月15日 4 点赞 4 评论 620 浏览 评分:9.7
简单实现字符串连接 摘要:解题思路:个人思路比较简单(可能我比较菜)注意事项:每完成一次连接,最后一个字符要变成'\0'参考代码:#include<stdio.h>#include<string.h>conne…… 题解列表 2022年02月20日 0 点赞 0 评论 415 浏览 评分:9.9
字符串连接-题解(C语言代码) 运用指针的方法 摘要:```c 运用指针 //不借用任何字符串库函数实现无冗余地接受两个字符串,然后把它们无冗余的连接起来 #include int main(void) { char string1[1…… 题解列表 2019年08月12日 0 点赞 0 评论 797 浏览 评分:9.9
字符串连接 (C语言代码) 摘要:解题思路:哈哈哈哈看代码就完事了哈哈哈哈哈鹅鹅鹅饿注意事项:参考代码:#include<stdio.h>#define N 100int main(){ char a[N],b[N]; w…… 题解列表 2019年04月10日 2 点赞 0 评论 690 浏览 评分:9.9
优质题解 Manchester- 字符串连接(很经典的问题) 摘要:解题思路:不调用库函数,实现字符串连接需要自己编写的有①:求字符串长度函数int stringlen_(char *l)/*求字符串长度*/ { int length=0; whi…… 题解列表 2018年03月26日 7 点赞 1 评论 1261 浏览 评分:9.9