字符串连接-题解(C语言代码) 摘要:#include int main() //直接输入输出就可以 { char a[110]; char b[110]; while(scanf("%s",a)&&scanf("…… 题解列表 2019年08月04日 0 点赞 0 评论 401 浏览 评分:0.0
字符串连接-题解(C++代码) 摘要:QAQ 我来写题解才发现不能借用任何函数 直接string类型 然后输出就好了 如果不用函数的也简单 定义一个处理字符串的函数 然后第一个数组开大一点一个for循环读到字符串末尾的时候 …… 题解列表 2019年06月13日 0 点赞 0 评论 405 浏览 评分:0.0
字符串连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[100],b[100]; int i,j; while(scanf("%s %s",a,b)!=E…… 题解列表 2019年04月14日 0 点赞 0 评论 573 浏览 评分:0.0
字符串连接 (C语言代码) 摘要:解题思路:哈哈哈哈看代码就完事了哈哈哈哈哈鹅鹅鹅饿注意事项:参考代码:#include<stdio.h>#define N 100int main(){ char a[N],b[N]; w…… 题解列表 2019年04月10日 2 点赞 0 评论 690 浏览 评分:9.9
字符串连接 (C语言代码) 摘要:解题思路:没什么好说的,上代码注意事项:参考代码:#include<stdio.h>int main(){ char str1[110]; char str2[110]; wh…… 题解列表 2019年02月15日 4 点赞 4 评论 620 浏览 评分:9.7
字符串连接 (C++代码)可AC 摘要:解题思路:用string 的性质就可以解决了注意事项:参考代码:#include <iostream> #include <string> using namespace std; int ma…… 题解列表 2018年08月08日 1 点赞 0 评论 581 浏览 评分:6.0
字符串连接 (C++代码)STL<string> 摘要:解题思路:使用c++的STL注意事项:无参考代码:#include <iostream>#include <string>using namespace std;int main(){ stri…… 题解列表 2018年04月23日 0 点赞 0 评论 620 浏览 评分:6.0
字符串连接 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string…… 题解列表 2018年04月18日 0 点赞 0 评论 520 浏览 评分:0.0
优质题解 Manchester- 字符串连接(很经典的问题) 摘要:解题思路:不调用库函数,实现字符串连接需要自己编写的有①:求字符串长度函数int stringlen_(char *l)/*求字符串长度*/ { int length=0; whi…… 题解列表 2018年03月26日 7 点赞 1 评论 1261 浏览 评分:9.9
字符串连接 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<string>#include<algorithm>#include<iostre…… 题解列表 2018年03月13日 0 点赞 0 评论 721 浏览 评分:0.0