返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.         int s,e;
  8.         cout<<"在此輸入ASCII碼範圍(0~127):"<<endl;
  9.         cout<<"起始值:";
  10.         cin>>s;
  11.         cout<<"終止值:";
  12.         cin>>e;
  13.         cout<<"所得字串:"<<endl;
  14.         for(int i=s;i<=e;i++)
  15.         {
  16.                 cout<<char(i)<<endl;
  17.         }
  18.         system("pause");
  19.         return 0;
  20. }
複製代碼

TOP

返回列表