返回列表 發帖

[隨堂測驗] 字串處理 (十) - 將ASCII碼轉換為字串2

本帖最後由 鄭繼威 於 2023-5-20 14:43 編輯



提示: 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. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見
陳牧謙

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表