返回列表 發帖

字串處理 (八) - 將字串轉換為ASCII碼

本帖最後由 tonyh 於 2020-5-22 20:24 編輯



提示: int(字元) --> ASCII碼

本帖隱藏的內容需要回復才可以瀏覽

本帖最後由 黃辰昊 於 2020-5-23 11:53 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入任意字串: ";
  9.     getline(cin,str);
  10.     cout<<"您剛輸入的字串ASCII碼依序為: "<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<int(str[i])<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼
Huang chenhao

TOP

  1. #include<cstdlib>
  2. #include<iostream>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串: ";
  9.     getline(cin,str);
  10.     cout<<"每個字的ASCLL碼的編序為: "<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<int(str[i])<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

TOP

  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<<"您剛輸入的字串ASCII碼依序為: "<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<int(str[i])<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.    
  8.     string a;
  9.     cout<<"請輸入一串英文字";
  10.     getline(cin,a);
  11.     for(int i=0; a[i]!=NULL ; i++)
  12.         cout<<int(a[i])<<endl;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼
李宇澤Oscar

TOP

  1. #include<cstdlib>
  2. #include<iostream>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串: ";
  9.     getline(cin,str);
  10.     cout<<"每個字的ASCLL碼的編序為: "<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<int(str[i])<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

TOP

  1. #include<cstdlib>
  2. #include<iostream>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string a;
  8.     getline(cin,a);
  9.     cout<<"ASCII碼為";
  10.     for(int i=0; a[i]!=NULL; i++)
  11.     cout<<int(a[i])<<endl;
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

TOP

  1. #include<cstdlib>
  2. #include<iostream>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串: ";
  9.     getline(cin,str);
  10.     cout<<"此字串的ASCII編碼依序為:"<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<int(str[i])<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.    
  8.     string o;
  9.     cout<<"請輸入一串英文字";
  10.     getline(cin,o);
  11.     for(int i=0; o[i]!=NULL ; i++)
  12.         cout<<int(o[i])<<endl;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼
hahahahahahahaha

TOP

返回列表