[作業] 字串處理 (九) - 將ASCII碼轉換為字串1
本帖最後由 鄭繼威 於 2022-7-16 10:28 編輯
提示: char(ASCII碼) --> 字元
字串處理 (八)是int去包char ->輸入整數取得字元
這個反過來char去包int ->輸入字元取得整數- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- re:
- int x;
- cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
- cout<<"值: ";
- cin>>x;
- cout<<"所得字元:"<<char(x)<<endl;
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |
附件:
您需要登錄才可以下載或查看附件。沒有帳號?註冊