本帖最後由 tonyh 於 2012-4-28 17:27 編輯
利用抓取其ASCII碼的方式, 判斷字串中每個字元的大小寫.- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- char string[100]; //宣告一字串陣列
- cout<<"請輸入任意字串(100字內): ";
- cin.getline(string,100); //cin.getline語法抓取字串
- cout<<"字串中每個字元的大小寫依序為: "<<endl;
- for(int i=0; i<100 && string[i]!=NULL; i++)
- {
- if(int(string[i])>=65 && int(string[i])<=90)
- {
- cout<<"第"<<i+1<<"個字元的ASCII碼為"<<int(string[i])
- <<", 大寫!"<<endl;
- }else if(int(string[i])>=97 && int(string[i])<=122)
- {
- cout<<"第"<<i+1<<"個字元的ASCII碼為"<<int(string[i])
- <<", 小寫!"<<endl;
- }else
- {
- cout<<"第"<<i+1<<"個字元的ASCII碼為"<<int(string[i])
- <<", 該字元不是個英文字母!"<<endl;
- }
- }
- system("pause");
- return 0;
- }
複製代碼 |