[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要: #include //char *STRCAT(char *dest, const char *src) //{ // char *tmp = dest;…… 题解列表 2019年11月02日 0 点赞 0 评论 368 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:\ #include #include int main() { char a[100],b[100]; …… 题解列表 2019年11月16日 0 点赞 0 评论 501 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(Python代码) 摘要:两个输入,然后直接用+号连接ok,python就是简洁,。。。。。。。。。。 ``` list1 = input() list2 = input() print(list1+list2…… 题解列表 2019年11月24日 0 点赞 0 评论 741 浏览 评分:0.0
一位热心的老大爷-精简-不用库函数-自定义函数之字符串连接-题解(C语言代码) 摘要: #include #define N 20 int main(){ char s1[N]={'\0'},s2[N]={'\0'}; …… 题解列表 2019年12月05日 0 点赞 0 评论 868 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:```c #include void str_cp(char *a,char *b) { while(*a++!=0); a--; while(*a++=*b++); } …… 题解列表 2019年12月18日 0 点赞 0 评论 671 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(Java代码) 摘要:import java.util.Scanner; public class Main4 { /** * @param args */ public static voi…… 题解列表 2019年12月18日 0 点赞 0 评论 685 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C++代码) 摘要:直接使用c++中+号连接即可 #include #include using namespace std; void link(string a,string b) { a=a+b; …… 题解列表 2019年12月29日 0 点赞 0 评论 785 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:本人小白 错误之处还望多多指教 谢谢! ```c #include #include //函数声明 char myself_1(char ch_1[],char ch_2[],cha…… 题解列表 2019年12月29日 0 点赞 0 评论 365 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C++代码) 摘要:使用gets()输入两个字符串,输出时分别输出中间不加空格或者回车就好了 ```cpp #include using namespace std; int main() { char a…… 题解列表 2020年01月19日 0 点赞 0 评论 486 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C++代码) 摘要: #include using namespace std; int main() { char c1[100]; char c2[1…… 题解列表 2020年01月30日 0 点赞 0 评论 439 浏览 评分:0.0