[编程入门]自定义函数之字符串连接-题解(python代码) 摘要:解题思路:“+”将两个字符串连接。注意事项:参考代码:a = input()b=input()print(a+b)…… 题解列表 2022年01月25日 0 点赞 0 评论 519 浏览 评分:0.0
[编程入门]自定义函数之字符串连接 摘要:```c #include #include int main() { void lian(char a[], char b[]); char a[10], b[10]; gets…… 题解列表 2022年01月18日 0 点赞 0 评论 266 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:【原理】,不使用<string.h>头文件,不使用字符串连接函数,使用指针注意事项:参考代码:#include <stdio.h>#include <stdlib.h>char *MyStr…… 题解列表 2022年01月18日 0 点赞 0 评论 200 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;void tap(string s1,string s2){ cout<<s1…… 题解列表 2022年01月15日 0 点赞 0 评论 792 浏览 评分: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 评论 221 浏览 评分:9.0
[编程入门]自定义函数之字符串连接 摘要:解题思路:太简单了,不用啥解题思路注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int f(char a[],char b[]){ puts(a)…… 题解列表 2021年12月30日 0 点赞 0 评论 435 浏览 评分:9.9
C++代码String库函数,for循环,索引 摘要:解题思路:for循环,索引注意事项:暂时不明参考代码:#include<iostream>#include<string>using namespace std;int main(){ stri…… 题解列表 2021年12月27日 0 点赞 0 评论 182 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void my_strcat(char *pa,char *pb,int len) //定义我…… 题解列表 2021年12月27日 0 点赞 0 评论 149 浏览 评分:0.0
[编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class 自定义函数之字符串连接 { public static void main(…… 题解列表 2021年12月18日 0 点赞 0 评论 117 浏览 评分:0.0
字符串连接-C语言 摘要:解题思路:首先要输入两个字符串,这里用gets()函数可实现,scanf()函数更像是输入单个字符;输入字符串后要按顺序连接,则需要判断什么时候将第二个字符串连接至第一个字符串后面;这里用了for()…… 题解列表 2021年12月13日 0 点赞 0 评论 190 浏览 评分:0.0