[编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int fun(char x[],char y[]){ strcat(x,y);}int m…… 题解列表 2022年01月27日 0 点赞 0 评论 420 浏览 评分:7.3
[编程入门]自定义函数之字符串连接-题解(python代码) 摘要:解题思路:“+”将两个字符串连接。注意事项:参考代码:a = input()b=input()print(a+b)…… 题解列表 2022年01月25日 0 点赞 0 评论 524 浏览 评分:0.0
[编程入门]自定义函数之字符串连接 摘要:```c #include #include int main() { void lian(char a[], char b[]); char a[10], b[10]; gets…… 题解列表 2022年01月18日 0 点赞 0 评论 271 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:【原理】,不使用<string.h>头文件,不使用字符串连接函数,使用指针注意事项:参考代码:#include <stdio.h>#include <stdlib.h>char *MyStr…… 题解列表 2022年01月18日 0 点赞 0 评论 205 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;void tap(string s1,string s2){ cout<<s1…… 题解列表 2022年01月15日 0 点赞 0 评论 795 浏览 评分: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 评论 223 浏览 评分:9.0
[编程入门]自定义函数之字符串连接 摘要:解题思路:太简单了,不用啥解题思路注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int f(char a[],char b[]){ puts(a)…… 题解列表 2021年12月30日 0 点赞 0 评论 438 浏览 评分:9.9
C++代码String库函数,for循环,索引 摘要:解题思路:for循环,索引注意事项:暂时不明参考代码:#include<iostream>#include<string>using namespace std;int main(){ stri…… 题解列表 2021年12月27日 0 点赞 0 评论 188 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void my_strcat(char *pa,char *pb,int len) //定义我…… 题解列表 2021年12月27日 0 点赞 0 评论 156 浏览 评分:0.0
[编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class 自定义函数之字符串连接 { public static void main(…… 题解列表 2021年12月18日 0 点赞 0 评论 117 浏览 评分:0.0