[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str1[100]={0},str2[50]={0}; get…… 题解列表 2020年07月21日 0 点赞 0 评论 164 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>using namespace std;void Link(char *a0,char *b0){…… 题解列表 2020年07月23日 0 点赞 0 评论 290 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[1000]; gets(a); char b[1000]…… 题解列表 2020年08月09日 0 点赞 0 评论 203 浏览 评分: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 评论 250 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[50]={0},b[50]={0}; scanf("%s%…… 题解列表 2020年11月07日 0 点赞 0 评论 218 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码#include#includeint main(){ char a[100],b[100];//定义两个数组 gets(a);//输入第一个数组表示的字符 …… 题解列表 2020年11月17日 0 点赞 0 评论 545 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>void stringcat(char *string1,char *strin…… 题解列表 2020年11月17日 0 点赞 0 评论 283 浏览 评分:0.0
一个超短函数就行 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void chuli(char a[200],char b[100]){ strcat(a,b);/…… 题解列表 2020年11月19日 0 点赞 0 评论 357 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码)简单代码! 摘要:解题思路:利用gets输入两个字符串,利用两个循环输出并且合并字符串;注意事项:了解gets是定义;参考代码:#includeint main(){ char a1[100],a2[100];…… 题解列表 2020年12月01日 0 点赞 0 评论 242 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:注意头文件啦,其他没啥要注意的;参考代码:#include <stdio.h>#include <string.h>int main(){ char a[100],b[100]; …… 题解列表 2020年12月04日 0 点赞 0 评论 300 浏览 评分:0.0