[隨堂測驗] 字串處理 (十) - 將ASCII碼轉換為字串2
本帖最後由 鄭繼威 於 2023-5-20 14:43 編輯
提示: char(ASCII碼) --> 字元- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int start, end;
- cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
- cout<<"起始值: ";
- cin>>start;
- cout<<"終止值: ";
- cin>>end;
- cout<<"所得字串:"<<endl;
- for(int i=start; i<=end; i++)
- cout<<char(i);
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |