Board logo

標題: 字串處理 (九) - 將ASCII碼轉換為字串1 [打印本頁]

作者: 鄭繼威    時間: 2023-3-15 17:36     標題: 字串處理 (九) - 將ASCII碼轉換為字串1

本帖最後由 鄭繼威 於 2023-3-15 20:58 編輯


提示: char(ASCII碼) --> 字元
字串處理 (八)是int去包char ->輸入字元取得整數
這個反過來char去包int ->輸入整數取得字元
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int x;
  8.     cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
  9.     cout<<"值: ";
  10.     cin>>x;
  11.     cout<<"所得字元:"<<char(x)<<endl;

  12.     goto re;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼

作者: 李彣    時間: 2023-3-15 21:00

此帖僅作者可見
作者: 黃裕恩    時間: 2023-3-15 21:01

此帖僅作者可見
作者: 林劭澧    時間: 2023-3-15 21:13

此帖僅作者可見




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2