[编程入门]自定义函数之字符串连接,简单粗暴,通俗易懂。看一眼就懂 摘要:解题思路:前段时间看到大家对这题有争议,这次我来一无脑解法注意事项:注意把多于的0跳过参考代码:#include<stdio.h>#include<string.h>int main(){ cha…… 题解列表 2022年02月13日 0 点赞 0 评论 438 浏览 评分:7.3
简单易懂 C语言 摘要:##解题思路: ##### 按题目要求,我们需要自定义一个函数。既把数组b里的字符串按照原先的顺序放在数组a的后面。 ##注意事项: ##### 当我们按照上面的提示编译好时,我们需要注意,我们…… 题解列表 2022年02月06日 0 点赞 1 评论 1199 浏览 评分:8.4
【露离】单行代码,编写题解 1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:def main(): print(input()+input())main()…… 题解列表 2022年02月05日 0 点赞 0 评论 162 浏览 评分:0.0
[编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int fun(char x[],char y[]){ strcat(x,y);}int m…… 题解列表 2022年01月27日 0 点赞 0 评论 470 浏览 评分:7.3
[编程入门]自定义函数之字符串连接-题解(python代码) 摘要:解题思路:“+”将两个字符串连接。注意事项:参考代码:a = input()b=input()print(a+b)…… 题解列表 2022年01月25日 0 点赞 0 评论 561 浏览 评分:0.0
[编程入门]自定义函数之字符串连接 摘要:```c #include #include int main() { void lian(char a[], char b[]); char a[10], b[10]; gets…… 题解列表 2022年01月18日 0 点赞 0 评论 337 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:【原理】,不使用<string.h>头文件,不使用字符串连接函数,使用指针注意事项:参考代码:#include <stdio.h>#include <stdlib.h>char *MyStr…… 题解列表 2022年01月18日 0 点赞 0 评论 255 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;void tap(string s1,string s2){ cout<<s1…… 题解列表 2022年01月15日 0 点赞 0 评论 832 浏览 评分:8.4
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void main(){ char a[1000],b[1000],m,n,i; gets(a); …… 题解列表 2021年12月30日 0 点赞 0 评论 259 浏览 评分:9.0
[编程入门]自定义函数之字符串连接 摘要:解题思路:太简单了,不用啥解题思路注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int f(char a[],char b[]){ puts(a)…… 题解列表 2021年12月30日 0 点赞 0 评论 482 浏览 评分:9.9