TA的每日心情 | 开心 2014-6-18 08:29 |
---|
签到天数: 14 天 [LV.3]偶尔看看II
滴水大师
 
- 积分
- 2345
|
题目
解决代码及点评
- <pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"></pre><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code">/*
- 编写一个函数JOIN,让它实现字符串连接运算功能。
- */
- #include <stdio.h>
- #include <stdlib.h>
-
- void JOIN(char *p1,char *p2,int n,int count1,int count2)//字符串链接函数
- {
- if (n<count1+count2+1)
- {
- printf("第一个字符串长度不够");
- }
- else
- {
- count2=0;
- while(p1[count1++]=p2[count2++]);
-
- }
- }
- void main()
- {
- char str1[50]="abcdefghijk";
- char str2[]="1234567890";
-
- int count1=0;//记录第一个字符串长度
- int count2=0;//记录第二个字符串长度
-
- while(str1[count1]) count1++;
- while(str2[count2]) count2++;
-
- int n=sizeof(str1);//计算数组一的字节数
-
- JOIN(str1,str2,n,count1,count2);
-
- printf("%s",str1);
-
- system("pause");
- }</pre><br></pre></pre></pre>
|
|