本帖最後由 鄭繼威 於 2022-11-26 16:45 編輯
- #include<iostream>
- #include<cstdlib>
- #include<string>
- using namespace std;
- int main()
- {
- string str;
- cout<<"請輸入一字串(包含空白,100字內): ";
- getline(cin,str);
- cout<<"每個字元之大小寫依序為: "<<endl;
- for(int i=0; i<str.length(); i++)
- {
- cout<<"第"<<i+1<<"個字元的ASCII碼為"<<int(str[i])<<", ";
- if(int(str[i])>=97 && int(str[i])<=122)
- cout<<"小寫!"<<endl;
- else if(int(str[i])>=65 && int(str[i])<=90)
- cout<<"大寫!"<<endl;
- else
- cout<<"該字元不是英文字母!"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |