我就废话不多说了,直接上代码吧!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
//这里给出两种方法 #include<stdio.h> #include<string.h> #define M 20 void main() { char str1[M],str2[M],newstr[2*M]; int chang1,chang2,i,flag,j; int low,high; printf ( "请输入第一个字符串:\n" ); gets (str1); printf ( "请输入第二个字符串:\n" ); gets (str2); chang1= strlen (str1); chang2= strlen (str2); if (chang1<chang2) { low=chang1; high=chang2; flag=1; } else { low=chang2; high=chang1; flag=0; } for (i=0;i<low;i++) //复制字符串个数少的部分 { newstr[2*i]=str1[i]; newstr[2*i+1]=str2[i]; } for (i=low,j=2*i;i<high;i++) //复制字符串多余的部分 { if (flag) newstr[j++]=str2[i]; else newstr[j++]=str1[i]; } newstr[low+high]= '\0' ; //添加一个结束标志 puts (newstr); } /////////////////////////////////////////////////// ////////////////这个比上面的简单////////////////// #include<stdio.h> int main() { char s1[20],s2[20],s3[40]; gets (s1); gets (s2); int i=0,j=0; while (s1[j]!= '\0' &&s2[j]!= '\0' ) { s3[i++]=s1[j]; s3[i++]=s2[j++]; } if (s1[j]== '\0' ) { while (s2[j]!= '\0' ) s3[i++]=s2[j++]; } else { while (s1[j]!= '\0' ) s3[i++]=s1[j++]; } s3[i]= '\0' ; puts (s3); printf ( "\n" ); return 0; } |
以上这篇c语言 两字符串交叉合并实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/Ling_cmd/article/details/78296738