返回列表 發帖
  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. }
複製代碼

TOP

返回列表