返回列表 發帖

字串的處理 - 將字串轉換為ASCII碼

本帖最後由 tonyh 於 2012-4-28 16:49 編輯
  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);            //cin.getline語法抓取字串
  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. }
複製代碼

  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<<"此字串的ASCLL字元碼依序為:"<<endl;   
  10.     for(int i=0; i<100 && string[i]!=NULL; i++)
  11.     {
  12.             cout<<int(string[i])<<endl;
  13.     }
  14.          
  15.    
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     char string[100];               
  8.     cout<<"請輸入要轉換的字串(100字內): ";
  9.     cin.getline(string,100);      
  10.     cout<<"此字串的ascii字原碼依序是:"<<endl;
  11.     for(int i=0;i<=100 && string[i]!=NULL; i++ )
  12.     {
  13.           cout<<int(string[i])<<endl;  
  14.     }         
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

  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<<"此字串的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<<"此字串的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<<"此字串的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

返回列表