返回列表 發帖

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

本帖最後由 陳品肇 於 2019-6-29 14:33 編輯
  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. using namespace std;
  4. int main()
  5. {
  6.     int a,b;
  7.     cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
  8.     cout<<"起始值:";
  9.     cin>>a;
  10.     cout<<"終止值:";
  11.     cin>>b;
  12.     cout<<"所得字串:"<<endl;
  13.     for(int i=a;i<=b;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 a,b,d=0;
  8.   cout<<"請輸入1~127的數字轉會為ASCLL:"<<endl;
  9.   cout<<"起始質:";
  10.   cin>>a;
  11.   cout<<"終止質";
  12.   cin>>b;
  13.   d=b-a;
  14.   for(int i=0;i<=d;i++)
  15.   {
  16.           cout<<char(a)<<" ";
  17.           a+=1;
  18.   }
  19.   
  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<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     int o,m;
  8.     //char str[100];
  9.     cout<<"請在此輸入ascii碼範圍(0~127): ";
  10.     /*cin.getline(str,127);
  11.      cout<<"此字串的ASCII字元碼依序為:"<<endl;*/
  12.      cout<<"起始值"<<endl;
  13.      cin>>o;
  14.      cout<<"終止值"<<endl;
  15.       cin>>m;
  16.       for(int i=o;i<=m;i++)
  17.       {
  18.       cout<<char(i)<<" ";
  19.             
  20.       }
  21.     system("pause");     
  22.     return 0;   
  23. }
複製代碼

TOP

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

TOP

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

TOP

返回列表