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">/************************************************************************/
- /*
- 42. 写一个函数比较两个字符串,如果s1=s2,
- 则返回值0;如果s1>s2,则返回值1;如果s1<s2, 则返回-1。
-
- */
- /************************************************************************/
- #include <stdio.h>
- #include <stdlib.h>
- #include <math.h>
- #include <string.h>
-
-
- int Teststring42(char *p1,char *p2)
- {
- while(*p1!='\0'&&*p2!='\0')
- {
- if (*p1-*p2==0)
- {
- p1++;
- p2++;
- }
- else
- {
- if (*p1-*p2>0)
- {
- return 1;
- }
- else
- return -1;
- }
- }
- if (*p1=='\0')
- {
- if (*p2=='\0')
- {
- return 0;
- }
- else
- {
- return -1;
- }
- }
- else
- {
- return 1;
- }
- }
- void main()
- {
- char arr1[100];
- char arr2[100];
- printf("请输入第一个字符串");
- gets_s(arr1);
- printf("请输入第二个字符串");
- gets_s(arr2);
- int num=Teststring42(arr1,arr2);
- if (num==0)
- {
- printf("两个字符串一样大");
- }
- else if(num==-1)
- {
- printf("第二个字符串大");
- }
- else
- printf("第一个字符串大");
- system("pause");
- }</pre><br><br></pre></pre></pre>
|
|