自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void Mystrcat(char str1[],char str2[]){ int n,i,j; for(i=strlen(str…… 题解列表 2021年03月30日 0 点赞 0 评论 152 浏览 评分:0.0
按照题目要求来解答 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> void connect(char* a, char* b) { cha…… 题解列表 2021年04月06日 0 点赞 0 评论 98 浏览 评分:0.0
简单易懂...... 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a,b; c…… 题解列表 2021年05月16日 0 点赞 0 评论 238 浏览 评分:0.0
超级怕数组QAQ 摘要:由于我是先学的python,再学的C,所以我就会觉得C的字符串数组比python难的高了一个等级,原本这是一个在python里面只需要直接加就可以的问题,但是在的这里却需要认真的考虑其中的原理,但是可…… 题解列表 2021年05月21日 0 点赞 0 评论 233 浏览 评分:0.0
自定义函数之字符串连接(C语言) 摘要:解题思路:这个题主要是让自己定义个函数进行连接注意事项:自定义函数时形参需要定义,如char参考代码:#include<stdio.h>#include<string.h>void link(char…… 题解列表 2021年06月01日 0 点赞 0 评论 222 浏览 评分:0.0
题解 1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>void Cat(char a1[],char b1[]){ gets(a1); g…… 题解列表 2021年07月03日 0 点赞 0 评论 256 浏览 评分:0.0
题解 1032: [编程入门]自定义函数之字符串连接 摘要:package ACM01; import java.util.Scanner; public class acm027 { public static void main(Str…… 题解列表 2021年07月17日 0 点赞 0 评论 214 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言代码)(简便) 摘要:解题思路:这应该是迭代法吧哈哈,迭代递归傻傻分不清注意事项:put遇'\0'结束参考代码:#include<stdio.h>#include<string.h>int main(){ …… 题解列表 2021年08月02日 0 点赞 0 评论 322 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void s(char a[],char b[]);int main(){ …… 题解列表 2021年08月25日 0 点赞 0 评论 103 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C语言) 摘要:```c #include #include int func(char a[],char b[],char c[]) { int i; int n1,n2; n1=strle…… 题解列表 2021年08月26日 0 点赞 0 评论 275 浏览 评分:0.0