[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:\ #include #include int main() { char a[100],b[100]; …… 题解列表 2019年11月16日 0 点赞 0 评论 315 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(Python代码) python 摘要:```python a=input()#输入数据 b=input()#输入数据 print(a+b)#python 中 + 好可以 连接字符串(/滑稽)emmmmmmmmmmmmmmmmmmm…… 题解列表 2019年11月21日 0 点赞 0 评论 504 浏览 评分:2.0
[编程入门]自定义函数之字符串连接-题解(Python代码) 摘要:两个输入,然后直接用+号连接ok,python就是简洁,。。。。。。。。。。 ``` list1 = input() list2 = input() print(list1+list2…… 题解列表 2019年11月24日 0 点赞 0 评论 625 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-极其麻烦但是锻炼思维的方法 摘要:#include #include main() { int t,s,i,n,h=0; char a[100],b[100],c[100];//c是空数组 gets(…… 题解列表 2019年11月27日 0 点赞 0 评论 553 浏览 评分:8.5
[编程入门]自定义函数之字符串连接-题解(Python代码)简单描述 摘要:python简单描述一下就可以,字符串相加即可 ```python def connect(a,b): print(a+b) a=input() b=input() connect…… 题解列表 2019年11月30日 0 点赞 0 评论 1238 浏览 评分:9.9
一位热心的老大爷-精简-不用库函数-自定义函数之字符串连接-题解(C语言代码) 摘要: #include #define N 20 int main(){ char s1[N]={'\0'},s2[N]={'\0'}; …… 题解列表 2019年12月05日 0 点赞 0 评论 645 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:采用指针的方法把字符串传递给自定义函数,并将结果放到指定的数组中 参考代码: ```c #include void strlink(char* des,char* str,char* s);…… 题解列表 2019年12月10日 0 点赞 3 评论 1628 浏览 评分:9.1
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:```c #include void str_cp(char *a,char *b) { while(*a++!=0); a--; while(*a++=*b++); } …… 题解列表 2019年12月18日 0 点赞 0 评论 578 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(Java代码) 摘要:import java.util.Scanner; public class Main4 { /** * @param args */ public static voi…… 题解列表 2019年12月18日 0 点赞 0 评论 560 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C++代码) 摘要:直接使用c++中+号连接即可 #include #include using namespace std; void link(string a,string b) { a=a+b; …… 题解列表 2019年12月29日 0 点赞 0 评论 344 浏览 评分:0.0