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

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4.  {int length(char *p);
  5.   int len;
  6.   char str[20];
  7.   cout<<"input string:";
  8.   cin>>str;
  9.   len=length(str);
  10.   cout<<"The length of string is "<<len<<endl;
  11.   return 0;
  12. }
  13. int length(char *p)            //求字符串长度的函数
  14. {int n;
  15.  n=0;
  16.  while (*p!='')
  17.   {n++;
  18.    p++;
  19.   }
  20.  return(n);
  21. }