[编程入门]自定义函数之字符串连接 (C++代码)用C++的输入输出就行 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){char a[999],b[999];while(cin>>a>>b)c…… 题解列表 2019年05月24日 0 点赞 0 评论 435 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-(指针版) 摘要:题解如下: #include void connect(char *s,char *t,char *q) { int i=0; for(;*s!=…… 题解列表 2019年06月17日 0 点赞 0 评论 274 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:## 一、第一种方法 用指针 void link(char *s,char *t) { while (*s != '\0') { s+…… 题解列表 2019年06月19日 0 点赞 0 评论 465 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:和1031差不多 要点: 要puts的最后一条要加上'\0' ```c #include #include int stick(char a[],char b[]) { i…… 题解列表 2019年08月15日 0 点赞 0 评论 455 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:思路: 1、把字符串2的首端接在字符串1的末尾处,必须要明确两个字符串的长度。 2、连接成为新的字符串后,必须在字符串的末尾加上'\0',否则会出现乱码; 3、明确要调用的变量。 参考代码: …… 题解列表 2019年08月20日 0 点赞 0 评论 275 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码)简单粗暴 摘要:#include #include int main() { char a[100],b[100]; scanf("%s",a); scanf("%s",b); printf("…… 题解列表 2019年08月20日 0 点赞 0 评论 333 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码)按照题意写 摘要:原题链接:[编程入门]自定义函数之字符串连接 参考代码: ------------ #include #include #include char a[…… 题解列表 2019年10月06日 0 点赞 0 评论 304 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码)按照题意写 摘要:原题链接:[编程入门]自定义函数之字符串连接 参考代码: ------------ #include #include #include char a[…… 题解列表 2019年10月06日 0 点赞 0 评论 334 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:### 自己构造函数,至于那个strlen,我是懒得遍历了,可以自行遍历修改判断条件查找结束符,之后都一样。 ```c #include #include #define N 10…… 题解列表 2019年10月24日 0 点赞 0 评论 1218 浏览 评分:9.9
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要: #include //char *STRCAT(char *dest, const char *src) //{ // char *tmp = dest;…… 题解列表 2019年11月02日 0 点赞 0 评论 196 浏览 评分:0.0