- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int option , ascii;
- char letter;
- start:
- cout<<"1-請輸入ASCII碼查詢字元2-請輸入字元查詢ASCII碼3-結束程式"<<endl;
- cout<<"請選擇"<<endl;
- cin>>option;
- switch(option)
- {
- case 1:
- cout<<"在此輸入ASCII碼"<<endl;
- cin>>ascii;
- cout<<"ASCII碼"<<ascii<<"所對應的字元為"<<char(ascii);
- break;
- case 2:
- cout<<"在此輸入字元"<<endl;
- cin>>letter;
- cout<<"字元"<<letter<<"所對應的ASCII碼為"<< int(letter);
- break;
- case 3:
- goto end;
- break;
- default:
- cout<<"輸入錯誤"<<endl;
- }
- cout<<endl;
- goto start;
- end:
- system("pause");
- return 0;
- }
複製代碼 |