返回列表 發帖

字串處理 (八) - 將字串轉換為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

返回列表