[编程入门]自定义函数之字符串连接 (Java描述) 摘要: import java.util.Scanner; public class Main { public static void main(Strin…… 题解列表 2020年04月28日 0 点赞 0 评论 570 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:#include #include int link(char a[],char b[],char c[]) { int i,j,l,m; l=strlen(a); …… 题解列表 2020年05月11日 0 点赞 0 评论 212 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:```c #include #include void lianjie (char a[],char b[]); int main() { char a[100],b[100]; …… 题解列表 2020年05月16日 0 点赞 2 评论 424 浏览 评分:9.6
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:#include #include int main(){ char str1[101]; char str2[100]; gets(str1); ge…… 题解列表 2020年05月27日 0 点赞 0 评论 297 浏览 评分:2.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 评论 405 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码)S 摘要:### 题目要求 写一函数,将两个字符串连接 ### 解题思路 将两个字符串用gets存入两个数组,用strlen函数得到字符串长度,再将其中一个字符串存入另一个字符串所在数组后面完成连接 …… 题解列表 2020年07月02日 0 点赞 0 评论 360 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str1[100]={0},str2[50]={0}; get…… 题解列表 2020年07月21日 0 点赞 0 评论 117 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>using namespace std;void Link(char *a0,char *b0){…… 题解列表 2020年07月23日 0 点赞 0 评论 236 浏览 评分: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 评论 460 浏览 评分:9.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[1000]; gets(a); char b[1000]…… 题解列表 2020年08月09日 0 点赞 0 评论 136 浏览 评分:0.0