返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char abc [50];
  7.     cout<<"請輸入文字: ";
  8.     cin.getline(abc,50);
  9.     for(int i=0;abc[i]!=NULL; i++)
  10.             cout<<abc[i]<<"->"<<int(abc[i])<<endl;
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

TOP

返回列表