返回列表 發帖
  1. #include<iostream>
  2. using namespace std;
  3. int main(){
  4.    char a[100];
  5.    cout<<"字串:";
  6.    cin.getline(a,100);
  7.    cout<<"您剛輸入的字串ASCII碼依序為: \n";
  8.    for(int i=0;a[i]!='\0';i++)
  9.    {
  10.        cout<<int(a[i])<<endl;
  11.    }
  12.    
  13.    system("pause");
  14.    return 0;
  15. }
複製代碼

TOP

返回列表