引入第三个一维字符数组 摘要:解题思路: 引入第三个一维字符数组,把两个字符数组的值依次赋值给第三个数组。参考代码:#include<stdio.h> #include<string.h> voi…… 题解列表 2022年10月13日 0 点赞 1 评论 148 浏览 评分:6.0
编写题解 1032: [编程入门]自定义函数之字符串连接(c++) 摘要:解题思路:定义两个字符串,再分别输出注意事项:不要换行!不要换行!不要换行!参考代码:#include<iostream>using namespace std;int main(){ stri…… 题解列表 2022年05月23日 0 点赞 0 评论 159 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:```c #include #include int main() { char a[50], b[50]; gets(a); gets(b); str…… 题解列表 2020年09月14日 0 点赞 0 评论 544 浏览 评分:6.0
字符串连接 摘要:```cpp #include using namespace std; int main() { string s,t; getline(cin,s); getline(…… 题解列表 2023年09月18日 0 点赞 0 评论 125 浏览 评分:6.0
[编程入门]自定义函数之字符串连接 摘要:解题思路:连接两个字符串,需要灵活运用C语言中C函数库中提供的处理字符串的函数,利用gets(str)来获取字符串,然后用strcat连接两个字符串。参考代码:#include<stdio.h>voi…… 题解列表 2022年06月11日 0 点赞 0 评论 213 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-Java 摘要:解题思路:纯属自我记录................注意事项:参考代码:Scanner in = new Scanner(System.in); String a = in.nextLine();…… 题解列表 2021年05月17日 0 点赞 0 评论 495 浏览 评分:6.0
[编程入门]自定义函数之字符串连接 (Java描述) 摘要: import java.util.Scanner; public class Main { public static void main(Strin…… 题解列表 2020年04月28日 0 点赞 0 评论 555 浏览 评分:6.0
1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char st; while((st=getchar())!=EOF){ if(st==…… 题解列表 2022年06月13日 0 点赞 0 评论 70 浏览 评分:2.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:#include #include int main(){ char str1[101]; char str2[100]; gets(str1); ge…… 题解列表 2020年05月27日 0 点赞 0 评论 281 浏览 评分:2.0
他说我标题太短,这下够长了吧。C语言之手写strcat 摘要:这么简单的代码却让我调了半天,结果重写了一遍才过。好玄学啊。。。于是乎学到一件事,不要在垃圾堆上挑挑拣拣,直接把垃圾扔掉重新做。 #include int main…… 题解列表 2022年04月02日 0 点赞 0 评论 194 浏览 评分:2.0