自定义函数之字符串连接java 摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { S…… 题解列表 2023年09月13日 0 点赞 0 评论 173 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){char a[1000],b[100];gets(a);gets(b);put…… 题解列表 2022年05月24日 0 点赞 0 评论 122 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码)S 摘要:### 题目要求 写一函数,将两个字符串连接 ### 解题思路 将两个字符串用gets存入两个数组,用strlen函数得到字符串长度,再将其中一个字符串存入另一个字符串所在数组后面完成连接 …… 题解列表 2020年07月02日 0 点赞 0 评论 350 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码)按照题意写 摘要:原题链接:[编程入门]自定义函数之字符串连接 参考代码: ------------ #include #include #include char a[…… 题解列表 2019年10月06日 0 点赞 0 评论 304 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[150]; char b[51]; gets(a); gets(b); …… 题解列表 2024年11月20日 0 点赞 0 评论 231 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void my_strcat(char *pa,char *pb,int len) //定义我…… 题解列表 2021年12月27日 0 点赞 0 评论 150 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:用gets()输入,puts()输出,调用strcat(数组1,数组2);注意事项:调用C语言中的库函数参考代码:#include<stdio.h>#include<math.h>int m…… 题解列表 2017年09月23日 0 点赞 0 评论 691 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:错误代码#include<stdio.h>#include<string.h>char* mystrcat(char* a,char* b){ while(*a !=&#…… 题解列表 2018年04月06日 0 点赞 0 评论 753 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (Java代码) 摘要:import java.util.Scanner;public class Connect { public static String Con(String str1,String s…… 题解列表 2017年07月07日 0 点赞 0 评论 870 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C++代码) 摘要:使用gets()输入两个字符串,输出时分别输出中间不加空格或者回车就好了 ```cpp #include using namespace std; int main() { char a…… 题解列表 2020年01月19日 0 点赞 0 评论 296 浏览 评分:0.0