超好懂的字符串的连接 摘要:解题思路:就两个char 类型的函数呗,先输入,在写一个函数用另一个数组将它们存储,最后输出即可;注意事项:注意先后顺序即可;参考代码:#include<stdio.h>#include<string…… 题解列表 2022年07月19日 0 点赞 0 评论 375 浏览 评分:8.5
字符串的连接 摘要:```c //题目要求把两个字符串链接,我们可以想到用数组存储,然后加上指针进行位置运算来实现,其实也可以直接用strcopy直接拷贝过去,我们这里就自己来实现字符串的连接 #include #…… 题解列表 2022年07月17日 0 点赞 1 评论 433 浏览 评分:9.9
[编程入门]自定义函数之字符串连接 摘要:解题思路:利用字符数组的相关知识点注意事项:1.是%s是输出字符串,不要写成%c. 2.输出printf时不要加\n,这是换行符。参考代码:#include<stdio.h…… 题解列表 2022年07月07日 0 点赞 1 评论 381 浏览 评分:9.6
strlen的灵活运用 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,n,m; char a[20],b[20]; …… 题解列表 2022年06月20日 0 点赞 0 评论 112 浏览 评分:0.0
1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char st; while((st=getchar())!=EOF){ if(st==…… 题解列表 2022年06月13日 0 点赞 0 评论 70 浏览 评分:2.0
[编程入门]自定义函数之字符串连接 摘要:解题思路:连接两个字符串,需要灵活运用C语言中C函数库中提供的处理字符串的函数,利用gets(str)来获取字符串,然后用strcat连接两个字符串。参考代码:#include<stdio.h>voi…… 题解列表 2022年06月11日 0 点赞 0 评论 213 浏览 评分:6.0
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){char a[1000],b[100];gets(a);gets(b);put…… 题解列表 2022年05月24日 0 点赞 0 评论 121 浏览 评分:0.0
编写题解 1032: [编程入门]自定义函数之字符串连接(c++) 摘要:解题思路:定义两个字符串,再分别输出注意事项:不要换行!不要换行!不要换行!参考代码:#include<iostream>using namespace std;int main(){ stri…… 题解列表 2022年05月23日 0 点赞 0 评论 159 浏览 评分:6.0
看到题解有好多朋友不是用的自定义函数,所以搞了一个 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>void lianjie(char *a,char *b);int main(){ char a…… 题解列表 2022年05月19日 0 点赞 0 评论 98 浏览 评分:0.0
自定义函数之字符串连接 题解(超简单)(c++) 摘要:解题思路:就不是直接输出两个字符串嘛!套个字符串。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string a,b;void zh(s…… 题解列表 2022年05月09日 0 点赞 0 评论 188 浏览 评分:0.0