標題:
[作業] 字串處理 (九) - 將ASCII碼轉換為字串
[打印本頁]
作者:
方浩葦
時間:
2024-10-5 13:44
標題:
[作業] 字串處理 (九) - 將ASCII碼轉換為字串
提示: char(ASCII碼) --> 字元
本帖隱藏的內容需要回復才可以瀏覽
作者:
邱博宥
時間:
2024-10-12 17:44
#include <bits/stdC++.h>
using namespace std;
int main ()
{
int q1,q2;
cout<<"請輸入ASCII的範圍:"<<endl;
cout<<"起始值:";
cin>>q1;
cout<<"結尾值:";
cin>>q2;
for(int a=q1;a<=q2;a++)
{
cout<<char(a);
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2