返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int start, end;
  7.     cout << "請輸入你要轉換的ASUII碼" << endl;
  8.     cout << "起始值";
  9.     cin >> start;
  10.     cout << "終止值";
  11.     cin >> end;
  12.     cout << "你輸入的字串為" << endl;
  13.     for(int i = start; i < end; i++)
  14.         cout << char(i) << endl;        
  15.     system("pause");     
  16.     return 0;   
  17. }
複製代碼

TOP

返回列表