返回列表 發帖

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

本帖最後由 方浩葦 於 2024-10-5 18:13 編輯



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

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

  1. #include <iostream>
  2. #include <string>
  3. #include <algorithm>
  4. using namespace std;

  5. int main() {
  6.     char str[100];
  7.     int sum=0;
  8.     cout << "請輸入一字串: ";
  9.     cin.getline(str, 100);
  10.     cout<<"Your 字串 translataed into ASCII is: "<<endl;
  11.     for (int i = 0; str[i] != '\0'; i++){
  12.         cout<< int(str[i])<<endl;
  13.                 }
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. #include <algorithm>
  5. using namespace std;



  6. int main()
  7. {
  8.    
  9.     string str;
  10.     cout<<"輸入字串: ";
  11.     getline(cin,str);
  12.     for(int i=0;i<str.size();i++){
  13.         cout<<int(str[i])<<endl;
  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.     string str;
  7.     cin>>str;
  8.     for(int i=0;i<str.size();i++)
  9.     {
  10.         cout<<str[i]+0<<endl;
  11.     }

  12.     return 0;
  13. }
複製代碼

TOP

返回列表