標題:
字串處理 (八) - 將字串轉換為ASCII碼
[打印本頁]
作者:
葉桔良
時間:
2023-5-6 14:02
標題:
字串處理 (八) - 將字串轉換為ASCII碼
本帖最後由 葉桔良 於 2023-5-6 20:51 編輯
提示: int(字元) --> ASCII碼
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[100];
cout<<"請輸入一字串(包含空白,100字內): ";
cin.getline(str,100);
cout<<"您剛輸入的字串ASCII碼依序為: "<<endl;
for(int i=0; str[i]!=NULL; i++)
cout<<int(str[i])<<endl;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白,100字內): ";
getline(cin,str);
cout<<"您剛輸入的字串ASCII碼依序為: "<<endl;
for(int i=0; i<str.length(); i++)
cout<<int(str[i])<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳柏融
時間:
2023-5-6 20:43
此帖僅作者可見
作者:
黃兆駿
時間:
2023-5-6 20:44
此帖僅作者可見
作者:
王述勳
時間:
2023-5-6 20:45
此帖僅作者可見
作者:
宥竣
時間:
2023-5-6 20:45
此帖僅作者可見
作者:
楊惇翔
時間:
2023-5-6 20:45
此帖僅作者可見
作者:
張晏齊
時間:
2023-5-6 20:45
此帖僅作者可見
作者:
博勛
時間:
2023-5-6 20:51
此帖僅作者可見
作者:
林哲弘
時間:
2023-5-6 20:57
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2