[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[50]={0},b[50]={0}; scanf("%s%…… 题解列表 2020年11月07日 0 点赞 0 评论 166 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100],b[100],c[100]; int i…… 题解列表 2020年10月09日 0 点赞 0 评论 157 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:```c #include #include int main() { char a[50], b[50]; gets(a); gets(b); str…… 题解列表 2020年09月14日 0 点赞 0 评论 545 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[1000]; gets(a); char b[1000]…… 题解列表 2020年08月09日 0 点赞 0 评论 127 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:!!!注意事项:!!!参考代码:!#include<stdio.h>#include<string.h>int ljc(char a[],char b[]){ int i=0,l1,l2; …… 题解列表 2020年07月25日 0 点赞 1 评论 452 浏览 评分:9.0
[编程入门]自定义函数之字符串连接-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>using namespace std;void Link(char *a0,char *b0){…… 题解列表 2020年07月23日 0 点赞 0 评论 228 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str1[100]={0},str2[50]={0}; get…… 题解列表 2020年07月21日 0 点赞 0 评论 116 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码)S 摘要:### 题目要求 写一函数,将两个字符串连接 ### 解题思路 将两个字符串用gets存入两个数组,用strlen函数得到字符串长度,再将其中一个字符串存入另一个字符串所在数组后面完成连接 …… 题解列表 2020年07月02日 0 点赞 0 评论 350 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(Python代码) 摘要:a=str(input()) b=str(input()) print(a+b) This is my code. Is easy. The string can plus. …… 题解列表 2020年06月20日 0 点赞 0 评论 402 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:#include #include int main(){ char str1[101]; char str2[100]; gets(str1); ge…… 题解列表 2020年05月27日 0 点赞 0 评论 282 浏览 评分:2.0