本帖最後由 鄭繼威 於 2022-7-9 11:37 編輯
int(字元) --> ASCII碼- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- char str[100];
- cout<<"請輸入一字串(包含空白,100字內): ";
- cin.getline(str,100);
- cout<<"您剛輸入的字串ASCII碼依序為: "<<endl;
- for(int i=0; str[i]!=NULL; i++)
- cout<<int(str[i])<<endl;
- system("pause");
- return 0;
- }
複製代碼- #include<iostream>
- #include<cstdlib>
- #include<string>
- using namespace std;
- int main()
- {
- string str;
- cout<<"請輸入一字串(包含空白,100字內): ";
- getline(cin,str);
- cout<<"您剛輸入的字串ASCII碼依序為: "<<endl;
- for(int i=0; i<str.length(); i++)
- cout<<int(str[i])<<endl;
- system("pause");
- return 0;
- }
複製代碼 |