返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char string[100];               
  7.     cout<<"請輸入任意字串(100字內): "<<endl;
  8.     cin.getline(string,100);
  9.     cout<<"此字串的ASCII字元碼依序為: "<<endl;
  10.     for(int i=0; i<=100 && string[i]!=NULL;i++)
  11.     {
  12.          cout<<int(string[i])<<endl;      
  13.     }         
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char string[100];               
  7.     cout<<"請輸入任意字串(100字內): "<<endl;
  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])
  15.               <<", 大寫!"<<endl;                     
  16.          }else if(int(string[i])>=97 && int(string[i])<=122)
  17.          {
  18.               cout<<"第"<<i+1<<"個字元的ASCII碼為"<<int(string[i])
  19.               <<", 小寫!"<<endl;
  20.          }else
  21.          {
  22.               cout<<"第"<<i+1<<"個字元的ASCII碼為"<<int(string[i])
  23.               <<", 非英文字母!"<<endl;   
  24.          }
  25.     }         
  26.     system("pause");
  27.     return 0;
  28. }
複製代碼

TOP

返回列表