標題:
字串處理 (八) - 將字串轉換為ASCII碼
[打印本頁]
作者:
tonyh
時間:
2015-12-19 11:31
標題:
字串處理 (八) - 將字串轉換為ASCII碼
本帖最後由 tonyh 於 2017-8-26 14:12 編輯
提示: 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;
cout<<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; str[i]!=NULL; i++)
cout<<int(str[i])<<endl;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2015-12-19 13:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[100];
cout<<"請輸入任意字串(100字內): ";
cin.getline(str,100);
cout<<"此字串的ASCII字元碼依序為: ";
for(int i=0; str[i]!=NULL; i++)
cout<<int(str[i])<<endl;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2015-12-21 13:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[100];
cout<<"請輸入任意字串(100字內): ";
cin.getline(str,100);
cout<<"此字串的ASCII字元碼依序為: ";
for(int i=0; str[i]!=NULL; i++)
cout<<int(str[i])<<endl;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2015-12-26 10:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[100];
cout<<"請輸入任意字串(100字內): ";
cin.getline(str,100);
cout<<"此字串的ASCII字元碼依序為: ";
for(int i=0; str[i]!=NULL; i++)
cout<<int(str[i])<<endl;
cout<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2