[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要: 找到两个字符串的数量,相加输出。 代码: #include void aaa(char *w,char *w1) { int a=0; in…… 题解列表 2020年03月13日 0 点赞 0 评论 434 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要: #include #include int func(char a[],char b[]){ strcat(a,b);//字符串连接函数 …… 题解列表 2020年03月30日 0 点赞 0 评论 343 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码)(一维数组)(函数调用) 摘要:```c #include #include void zi(char a[100],char b[100]) { strcat(a,b);//把字符串b追加到字符串a中. …… 题解列表 2020年04月21日 0 点赞 0 评论 346 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:#include #include int link(char a[],char b[],char c[]) { int i,j,l,m; l=strlen(a); …… 题解列表 2020年05月11日 0 点赞 0 评论 295 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(Python代码) 摘要:a=str(input()) b=str(input()) print(a+b) This is my code. Is easy. The string can plus. …… 题解列表 2020年06月20日 0 点赞 0 评论 468 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码)S 摘要:### 题目要求 写一函数,将两个字符串连接 ### 解题思路 将两个字符串用gets存入两个数组,用strlen函数得到字符串长度,再将其中一个字符串存入另一个字符串所在数组后面完成连接 …… 题解列表 2020年07月02日 0 点赞 0 评论 433 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str1[100]={0},str2[50]={0}; get…… 题解列表 2020年07月21日 0 点赞 0 评论 161 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>using namespace std;void Link(char *a0,char *b0){…… 题解列表 2020年07月23日 0 点赞 0 评论 289 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[1000]; gets(a); char b[1000]…… 题解列表 2020年08月09日 0 点赞 0 评论 197 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100],b[100],c[100]; int i…… 题解列表 2020年10月09日 0 点赞 0 评论 246 浏览 评分:0.0