標題:
字串處理 (九) - 將ASCII碼轉換為字串1
[打印本頁]
作者:
鄭繼威
時間:
2023-5-13 14:47
標題:
字串處理 (九) - 將ASCII碼轉換為字串1
提示:
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-5-13 15:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int n;
cout<<"在此輸入ACSCII編碼(0~127):";
cin>>n;
cout<<"你所輸入的ASCII編碼為:"<<n<<endl;
cout<<"所得字元:"<<char(n)<<endl; //char(int):將ASCII編碼轉換成對應字元
goto re;
system("pause");
return 0;
}
複製代碼
作者:
葉佳和
時間:
2023-5-13 15:20
#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-5-13 15:22
#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-5-13 15:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int i;
cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
cout<<"值:";
cin>>i;
cout<<"所得字元:"<<char(i)<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳泓亦
時間:
2023-5-13 15:30
#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-5-17 20:20
#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-5-19 23:37
#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-5-20 13:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"在此輸入ASCII碼範圍"<<endl;
cout<<"值: ";
cin>>x;
cout<<"所得字元:"<<char(x)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃品禎
時間:
2023-10-7 19:18
#include<iostream>
#include<cstdlib>
#include<string.h>
using namespace std;
int main()
{
int a;
cout<<"請輸入0~127"<<endl;
cin>>a;
cout<<char(a)<<endl;
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2