返回列表 發帖

[作業] 字串的處理 (六)

本帖最後由 tonyh 於 2014-1-4 14:16 編輯

使用者輸入一任意字串,
統計出: 大寫字元幾個? 小寫字元幾個? 非英文字元幾個?
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a=0, b=0, c=0;
  7.     char str[100];
  8.     cout<<"請輸入任意字串: ";
  9.     cin.getline(str,100);
  10.     for(int i=0; str[i]!=NULL; i++)
  11.     {
  12.          if(int(str[i])>=65 && int(str[i])<=90)
  13.              a++;
  14.          else if(int(str[i])>=97 && int(str[i])<=122)
  15.              b++;
  16.          else
  17.              c++;
  18.     }
  19.     cout<<"大寫: "<<a<<"個!"<<endl;
  20.     cout<<"小寫: "<<b<<"個!"<<endl;
  21.     cout<<"非英文字元: "<<c<<"個!"<<endl;   
  22.     system("pause");
  23.     return 0;
  24. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表