返回列表 發帖

[作業] 字串處理 (九) - 將ASCII碼轉換為字串



提示: char(ASCII碼) --> 字元

本帖隱藏的內容需要回復才可以瀏覽

  1. #include <bits/stdC++.h>
  2. using namespace std;
  3. int main ()
  4. {
  5.     int q1,q2;
  6.     cout<<"請輸入ASCII的範圍:"<<endl;
  7.     cout<<"起始值:";
  8.     cin>>q1;
  9.     cout<<"結尾值:";
  10.     cin>>q2;
  11.     for(int a=q1;a<=q2;a++)
  12.     {
  13.         cout<<char(a);
  14.     }

  15.     return 0;
  16. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;

  3. int main(){
  4.     int a, b;
  5.     cout << "請輸入ASCII馬範圍(0~127)" << endl;
  6.     cout << "起始值: ";
  7.     cin >> a;
  8.     cout << endl << "終止值: ";
  9.     cin >> b;
  10.     cout << "Your 字串 translated into ASCII is: " << endl;
  11.     for (int i = a; i <= b; i++){
  12.         cout << char(i) ;
  13.     }
  14.    
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

返回列表