返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>

  3. using namespace std;
  4. int main()
  5. {
  6.    int start,end;
  7.    cout<<"請輸入ASCII範圍(1-127)"<<endl;
  8.    cout<<"起始值"<<endl;
  9.    cin>>start;
  10.    cout<<"終止值"<<endl;
  11.    cin>>end;
  12.    
  13.    cout<<"所得字串"<<endl;
  14.    for(int i=start;i<=end;i++)
  15.    cout<<char(i);
  16.    cout<<endl;
  17.    
  18.    system("pause");
  19.    return 0;
  20. }
複製代碼

TOP

返回列表