返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     char str[100];
  7.     int ASCIII,ASCII;
  8.     cout <<"請輸入ASCII碼範圍(0~127):"<<endl ;
  9.     cout <<"起始值"<<endl;
  10.     cin >> ASCIII;
  11.     cout <<"終止值"<<endl;
  12.     cin >> ASCII;
  13.     cin.getline(str,100);
  14.     cout <<"所得字串"<< endl;
  15.     for(int i = ASCIII;i<=ASCII;i++)
  16.     cout <<char(i) << endl;
  17.    

  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

TOP

返回列表