本帖最後由 tonyh 於 2012-4-28 16:49 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- char string[100]; //宣告一字串陣列
- cout<<"請輸入任意字串(100字內): ";
- cin.getline(string,100); //cin.getline語法抓取字串
- cout<<"此字串的ASCII字元碼依序為: "<<endl;
- for(int i=0; i<100 && string[i]!=NULL; i++)
- {
- cout<<int(string[i])<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |