返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int option, ascii;
  7.     char letter;
  8.     start:
  9.     cout<<"1.輸入ASCII碼尋字元 2.輸入字元查詢ASCII碼 3.結束程式"<<endl;
  10.     cout<<"請選擇: ";
  11.     cin>>option;
  12.     switch(option)
  13.     {
  14.                   case 1:
  15.                   cout<<"在此輸入ASCII碼: ";
  16.                   cin>>ascii;
  17.                   cout<<"ASCII碼"<<ascii<<"所對應的字元為"<<char(ascii);
  18.                   break;
  19.                   case 2:
  20.                   cout<<"在此輸入字元: ";
  21.                   cin>>letter;
  22.                   cout<<"字元"<<ascii<<"所對應的ASCII碼為"<<int(letter);
  23.                   break;
  24.                   case 3:
  25.                        goto end;
  26.                   default:
  27.                        cout<<"輸入錯誤!";              
  28.     }
  29.     cout<<endl;
  30.     goto start;
  31.     end:
  32.    
  33.    system("pause");
  34.    return 0;
  35. }
複製代碼

TOP

返回列表