返回列表 發帖

[隨堂測驗] 字串處理 (十) - 判斷大小寫

本帖最後由 鄭繼威 於 2022-11-26 16:45 編輯

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

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表