本帖最後由 tonyh 於 2013-12-28 15:32 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- char str[100];
- cout<<"請輸入任意字串(100字內): ";
- cin.getline(str,100);
- cout<<"字串中每個字元的大小寫依序為: "<<endl;
- for(int i=0; str[i]!=NULL; i++)
- {
- cout<<"第"<<i+1<<"個字元的ASCII碼為"<<int(str[i])<<", ";
- if(int(str[i])>=65 && int(str[i])<=90)
- cout<<"大寫!";
- else if(int(str[i])>=97 && int(str[i])<=122)
- cout<<"小寫!";
- else
- cout<<"該字元不是個英文字母!";
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |