返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         re:
  7.         int n;
  8.         cout<<"在此輸入ACSCII編碼(0~127):";
  9.         cin>>n;
  10.         cout<<"你所輸入的ASCII編碼為:"<<n<<endl;
  11.         cout<<"所得字元:"<<char(n)<<endl;   //char(int):將ASCII編碼轉換成對應字元
  12.        
  13.         goto re;
  14.         system("pause");
  15.         return 0;
  16. }
複製代碼

TOP

返回列表