[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码#include#includeint main(){ char a[100],b[100];//定义两个数组 gets(a);//输入第一个数组表示的字符 …… 题解列表 2020年11月17日 0 点赞 0 评论 473 浏览 评分:0.0
利用数组遍历来实现连接 摘要:#include<stdio.h>int main(){ char a[1000],b[19999]; int i,j=0; &…… 题解列表 2025年01月04日 1 点赞 0 评论 66 浏览 评分: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语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:字符串的处理一般有两种,复制和连接,这里用到一个连接函数。参考代码:char a[100], b[50]; gets(a); gets(b); strcat(a, b); …… 题解列表 2017年07月23日 0 点赞 1 评论 471 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码)简单代码! 摘要:解题思路:利用gets输入两个字符串,利用两个循环输出并且合并字符串;注意事项:了解gets是定义;参考代码:#includeint main(){ char a1[100],a2[100];…… 题解列表 2020年12月01日 0 点赞 0 评论 181 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 字符串链接 */ #include<stdio.h> void link(char *ch1,char *ch2) { char ch[1000…… 题解列表 2017年10月27日 3 点赞 2 评论 624 浏览 评分:0.0
自定义函数之字符串连接(指针) 摘要:解题思路: 解释就都在代码中了 参考代码: 未用指针版,容易理解些: ```c #include void m(char *a,char *b) { int i=0,k…… 题解列表 2023年08月16日 0 点赞 0 评论 220 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:知识基础:函数定义字符数组和字符串答案#include<stdio.h> char fun(char a[],char b[]); char fun(char a[],char b[]){ p…… 题解列表 2017年06月11日 1 点赞 1 评论 581 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C++代码) 摘要:直接使用c++中+号连接即可 #include #include using namespace std; void link(string a,string b) { a=a+b; …… 题解列表 2019年12月29日 0 点赞 0 评论 344 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int lianjie(char a[],char b[],char c[]){ int i …… 题解列表 2021年03月01日 0 点赞 0 评论 101 浏览 评分:0.0