[编程入门]自定义函数之字符串连接-题解(Python代码) 摘要:解题思路:emmmemm注意事项:参考代码:a=input()b=input()print(a+b)#非要让我写很多#非要让我写很多#非要让我写很多#非要让我写很多…… 题解列表 2020年12月10日 0 点赞 0 评论 276 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:gets()输入strcat()连接puts()输出即可注意事项:记得头文件加上#include <string.h>参考代码:#include <stdio.h> #include <s…… 题解列表 2020年12月20日 0 点赞 0 评论 180 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:!!!!!!!值就像是表面的东西,而指针就是其根本所在,对指针的操作无时无刻都与值联系在一起!!!!!!!!!参考代码:1】自己写函数(建议这个,锻炼一下)#include <st…… 题解列表 2020年12月21日 0 点赞 0 评论 304 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "string.h"#include "stdlib.h"void ScatchString(char * str1…… 题解列表 2021年01月18日 0 点赞 0 评论 218 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100],b[100]; gets(a); gets(b); …… 题解列表 2021年01月20日 0 点赞 0 评论 168 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[40],b[20]; gets(a); gets(b);…… 题解列表 2021年01月20日 0 点赞 0 评论 170 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h># define N 80char *MyStract(char *a,char *b);int main(){ char c[2*N…… 题解列表 2021年01月29日 0 点赞 0 评论 320 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:```c #include void fun(char a[],char b[],char c[]) { int i,j=0; for(i=0;a[i]!='\0';i++) …… 题解列表 2021年02月07日 0 点赞 0 评论 232 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int lianjie(char a[],char b[],char c[]){ int i …… 题解列表 2021年03月01日 0 点赞 0 评论 150 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:解题思路:利用函数连接字符串注意事项:在a[i]最后加上一个'\0';参考代码:#include <stdio.h>#include <stdlib.h>#include <strin…… 题解列表 2021年03月08日 0 点赞 0 评论 369 浏览 评分:0.0