標題:
字串處理 (八) - 將字串轉換為ASCII碼
[打印本頁]
作者:
鄭繼威
時間:
2023-3-15 17:35
標題:
字串處理 (八) - 將字串轉換為ASCII碼
本帖最後由 鄭繼威 於 2023-3-15 17:38 編輯
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-3-15 20:43
#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;
}
複製代碼
作者:
黃裕恩
時間:
2023-3-15 20:46
#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-3-15 20:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str;
cout<<"輸入一串字串:";
getline(cin,str);
cout<<"您剛輸入的字串ASCII碼依序為:"<<endl;
for(int i=0; i<str.size(); i++)
{
cout<<int(str[i])<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林劭杰
時間:
2023-3-15 20:49
#include<iostream>
#include<cstdlib>
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-3-15 20:52
#include<iostream>
#include<cstdlib>
#include<string.h>
using namespace std;
int main()
{
char c;
cout<<"請輸入你要查詢ASCII的字元: ";
cin>>c;
cout<<"字元<"<<c<<">的查詢結果:"<<int(c)<<endl; //char->int
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2