Board logo

標題: 字串的處理 - 判斷大小寫 [打印本頁]

作者: tonyh    時間: 2012-4-28 16:52     標題: 字串的處理 - 判斷大小寫

本帖最後由 tonyh 於 2012-4-28 17:27 編輯

利用抓取其ASCII碼的方式, 判斷字串中每個字元的大小寫.
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char string[100];                   //宣告一字串陣列               
  7.     cout<<"請輸入任意字串(100字內): ";
  8.     cin.getline(string,100);            //cin.getline語法抓取字串
  9.     cout<<"字串中每個字元的大小寫依序為: "<<endl;
  10.     for(int i=0; i<100 && string[i]!=NULL; i++)
  11.     {
  12.          if(int(string[i])>=65 && int(string[i])<=90)
  13.          {
  14.                cout<<"第"<<i+1<<"個字元的ASCII碼為"<<int(string[i])
  15.                    <<", 大寫!"<<endl;
  16.          }else if(int(string[i])>=97 && int(string[i])<=122)
  17.          {
  18.                cout<<"第"<<i+1<<"個字元的ASCII碼為"<<int(string[i])
  19.                    <<", 小寫!"<<endl;
  20.          }else
  21.          {
  22.                cout<<"第"<<i+1<<"個字元的ASCII碼為"<<int(string[i])
  23.                    <<", 該字元不是個英文字母!"<<endl;  
  24.          }
  25.     }
  26.     system("pause");
  27.     return 0;
  28. }
複製代碼

作者: t3742238    時間: 2012-4-28 17:18

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char string[100];     
  7.     cout<<"請輸入任意字串(100字內):"<<endl;
  8.     cin.getline(string,100);
  9.     cout<<"此字串的ASCLL字元碼依序為:"<<endl;   
  10.     for(int i=0; i<100 && string[i]!=NULL; i++)
  11.     {
  12.             if(int(string[i])>65 && int (string[i])<=90)
  13.             {
  14.                       cout<<"第"<<i+1<<"個字元的ASCLL碼為"
  15.                           <<int(string[i])<<",大寫"<<endl;           
  16.             }else if(int(string[i])>96 && int(string[i])<=122)
  17.             {
  18.                       cout<<"第"<<i+1<<"個字元的ASCLL碼為"
  19.                           <<int(string[i])<<",小寫"<<endl;
  20.             }else
  21.             {
  22.                       cout<<"您打的字串不是字母"<<endl;
  23.             }
  24.                      
  25.     }
  26.          
  27.    
  28.     system("pause");
  29.     return 0;
  30. }
複製代碼

作者: 劉漢文    時間: 2012-4-28 17:20

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char string[100];               
  7.     cout<<"請輸入任意字串(100字): ";
  8.     cin.getline(string,100);
  9.     cout<<"字串中每個字元的大小寫依序為: "<<endl;
  10.     for(int i=0; i<100 && string[i]!=NULL; i++)
  11.     {
  12.            if(int(string[i])>=65 && int(string[i])<=90)
  13.            {
  14.                cout<<"第"<<i+1<<"個字元的ASCII碼為"<<int(string[i])<<",大寫!"<<endl;
  15.            }else if(int(string[i])>=96 && int(string[i])<=122)
  16.            {
  17.                  cout<<"第"<<i+1<<"個字元的ASCII碼為"<<int(string[i])<<",小寫!"<<endl;  
  18.            }else
  19.            {
  20.                 cout<<"該字元不是英文字母"<<endl;
  21.            }
  22.            
  23.            
  24.             
  25.     }   
  26.     system("pause");
  27.     return 0;
  28. }
複製代碼

作者: 尤泓鈞    時間: 2012-4-28 17:28

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char string[100];
  7.     cout<<"請輸入任意字串[100自以內]"<<endl;
  8.     cin.getline(string,100);
  9.     cout<<"此字串的ASCII字元大小寫依序為:"<<endl;
  10.     for(int i=0; i<100 && string[i]!=NULL; i++)
  11.     {
  12.         if(int(string[i])>=65 && int(string[i])<=90)
  13.         {
  14.            cout<<"第"<<i+1<<"個字元的ASCII碼為"<<int(string[i])<<",大寫!"<<endl;                  
  15.         }   
  16.     if(int(string[i])>=97 && int(string[i])<=122)
  17.       {
  18.            cout<<"第"<<i+1<<"個字元的ASCII碼為"<<int(string[i])<<",小寫!"<<endl;                  
  19.       }else
  20.       {
  21.       cout<<"該字母不是英文字母"<<endl;
  22.       }
  23.     }  
  24.     system("pause");
  25.     return 0;
  26. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2