编写题解 1032: [编程入门]自定义函数之字符串连接
摘要: #include #include #include #include #include using namespace std;……
利用数组遍历来实现连接
摘要:#include<stdio.h>int main(){ char a[1000],b[19999]; int i,j=0; &……
自定义函数之字符串连接
摘要:#include<stdio.h>
int main(void)
{
char a[100];
char b[100];
char temp[100];
i……
没用strcat,用的gets和puts,
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void lianj(char f1[],char f2[]){ int k,i,p; ……
编写题解 1032: [编程入门]自定义函数之字符串连接
摘要:解题思路:注意事项:参考代码:#include<stdio.h>void connect(char a[],char b[]){ int i,j=0; while(a[i]!=0)……