提示: 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;
- }
複製代碼 |