[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:gets()输入strcat()连接puts()输出即可注意事项:记得头文件加上#include <string.h>参考代码:#include <stdio.h> #include <s…… 题解列表 2020年12月20日 0 点赞 0 评论 117 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:# 自定义函数之字符串连接 **原题链接[1032:自定义函数之字符串连接](http://https://www.dotcpp.com/oj/problem1032.html "1032:自定…… 题解列表 2020年12月17日 0 点赞 0 评论 525 浏览 评分:8.0
[编程入门]自定义函数之字符串连接-题解(Python代码) 摘要:解题思路:emmmemm注意事项:参考代码:a=input()b=input()print(a+b)#非要让我写很多#非要让我写很多#非要让我写很多#非要让我写很多…… 题解列表 2020年12月10日 0 点赞 0 评论 223 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:注意头文件啦,其他没啥要注意的;参考代码:#include <stdio.h>#include <string.h>int main(){ char a[100],b[100]; …… 题解列表 2020年12月04日 0 点赞 0 评论 164 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码)简单代码! 摘要:解题思路:利用gets输入两个字符串,利用两个循环输出并且合并字符串;注意事项:了解gets是定义;参考代码:#includeint main(){ char a1[100],a2[100];…… 题解列表 2020年12月01日 0 点赞 0 评论 181 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:定义两个字符串st1,st2,并确定长度。然后输入两个字符串,通过strcat将st2连接到st1,输出st1..。注意事项:字符串要确定长度;每个gets()只能输入一个字符串;参考代码:…… 题解列表 2020年11月28日 0 点赞 0 评论 506 浏览 评分:9.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 思路简单易懂! 摘要:解题思路:注意定义字符串函数的头文件。注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[100]; char b[10…… 题解列表 2020年11月27日 0 点赞 0 评论 975 浏览 评分:6.0
一个超短函数就行 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void chuli(char a[200],char b[100]){ strcat(a,b);/…… 题解列表 2020年11月19日 0 点赞 0 评论 272 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>void stringcat(char *string1,char *strin…… 题解列表 2020年11月17日 0 点赞 0 评论 160 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码#include#includeint main(){ char a[100],b[100];//定义两个数组 gets(a);//输入第一个数组表示的字符 …… 题解列表 2020年11月17日 0 点赞 0 评论 473 浏览 评分:0.0