返回列表 發帖

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

本帖最後由 tonyh 於 2014-7-26 17:48 編輯
  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.     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

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int start, end;
  7.     cout << "請輸入你要轉換的ASUII碼" << 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) << endl;        
  15.     system("pause");     
  16.     return 0;   
  17. }
複製代碼

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.     system("pause");
  16.     return 0;
  17. }
複製代碼

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<<"起始值: "<<endl;
  9.     cin>>a;
  10.     cout<<"終止值: "<<endl;
  11.     cin>>b;
  12.     cout<<""<<endl;
  13.     for(int i=a; i<=b; i++)
  14.         cout<<char(i)<<endl;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

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

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

返回列表