返回列表 發帖

字串處理 (九) - 將ASCII碼轉換為字串

本帖最後由 tonyh 於 2021-7-3 19:36 編輯



提示: char(ASCII碼) --> 字元
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int start, end;
  7.     cout<<"在此輸入ASCII碼範圍(0~127)"<<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);
  15.     cout<<endl;
  16.     system("pause");     
  17.     return 0;   
  18. }
複製代碼

  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

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

TOP

本帖最後由 林鼎傑 於 2021-7-3 19:40 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cstring>
  4. using namespace std;
  5. int main()
  6. {
  7.         int a,b;
  8.         cout<<"在此輸入ASCII碼範圍(0~127): "<<endl;
  9.         cout<<"起始值: ";
  10.         cin>>a;
  11.         cout<<"終止值: ";
  12.         cin>>b;
  13.         cout<<"所得字串:"<<endl;
  14.         for(int i=a; i<=b; i++)
  15.             cout<<char(i);
  16.         cout<<endl;
  17.         system("pause");
  18.         return 0;
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.         int start,end;
  8.     cout<<"在此輸入ASKII碼"<<endl;
  9.     cout<<"起始值:";
  10.     cin>>start;
  11.     cout<<"終止值:";
  12.     cin>>end;
  13.     cout<<"所得字串:";
  14.     for(int i=start; i<=end; i++)
  15.     {
  16.             cout<<char(i);
  17.             cout<<" ";
  18.         }
  19.         cout<<endl;
  20.         system("pause");
  21.         return 0;
  22. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int start, end;
  7.     cout<<"在此輸入ASCII碼範圍(0~127)"<<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);
  15.     cout<<endl;
  16.     system("pause");     
  17.     return 0;   
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cstring>
  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.    cout<<char(i);
  16.    cout<<endl;
  17.         system("pause");
  18.     return 0;   
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int start,end;
  7.     cout<<"在此輸入ASCII碼範圍(0~127)"<<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);
  15.         cout<<endl;
  16.     system("pause");     
  17.     return 0;   
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int start, end;
  7.     cout<<"在此輸入ASCII碼範圍(0~127)"<<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);
  15.     cout<<endl;   
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

TOP

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

TOP

返回列表