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

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. int main ()
  4. {char c;
  5.  int letters=0,space=0,digit=0,other=0;
  6.  cout<<"enter one line::"<<endl;
  7.  while((c=getchar())!='n')
  8.  {if (c>='a' && c<='z'||c>='A' && c<='Z')
  9.     letters++;
  10.   else if (c==' ')
  11.     space++;
  12.   else if (c>='0' && c<='9')
  13.     digit++;
  14.   else
  15.     other++;
  16.   }
  17.   cout<<"letter:"<<letters<<", space:"<<space<<", digit:"<<digit<<", other:"<<other<<endl;
  18.   return 0; 
  19.   } 
  20.