標題:
字串處理 (九) - 將ASCII碼轉換為字串1
[打印本頁]
作者:
鄭繼威
時間:
2023-3-15 17:36
標題:
字串處理 (九) - 將ASCII碼轉換為字串1
本帖最後由 鄭繼威 於 2023-3-15 20:58 編輯
提示:
char(ASCII碼) --> 字元
字串處理 (八)
是int去包char ->輸入字元取得整數
這個反過來char去包int ->輸入整數取得字元
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x;
cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
cout<<"值: ";
cin>>x;
cout<<"所得字元:"<<char(x)<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
李彣
時間:
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