xt6-17.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {int strcmp(char *p1,char *p2);
  5.  int m;
  6.  char str1[20],str2[20],*p1,*p2;
  7.  cout<<"input two strings:"<<endl;
  8.  cin>>str1;
  9.  cin>>str2;
  10.  p1=&str1[0];
  11.  p2=&str2[0];
  12.  m=strcmp(p1,p2);
  13.  cout<<"result:"<<m<<endl;
  14.  return 0;
  15. }
  16. int strcmp(char *p1,char *p2)         //自已定义字符串比较函数 
  17. {int i;
  18.  i=0;
  19.  while(*(p1+i)==*(p2+i))
  20.    if (*(p1+i++)=='') return(0);     //全部字符相同时返回结果0 
  21.  return(*(p1+i)-*(p2+i));     //不相同时返回结果为第一对不相同字符的ASCII码的差值