返回列表 發帖
本帖最後由 蔡沛倢 於 2023-10-6 19:25 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string a;
  7.     cout<<"請輸入任一一組字串(包含空白,100字內):";
  8.     getline(cin,a);
  9.     cout<<"你輸入的字串ASCII碼依序為:"<<endl;
  10.     for(int i=0;i<a[i];i++)
  11.     {
  12.         cout<<int(a[i])<<endl;
  13.     }
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

返回列表