標題:
字串處理 (八) - 將字串轉換為ASCII碼
[打印本頁]
作者:
tonyh
時間:
2020-5-22 20:14
標題:
字串處理 (八) - 將字串轉換為ASCII碼
本帖最後由 tonyh 於 2020-5-22 20:24 編輯
提示: int(字元) --> ASCII碼
本帖隱藏的內容需要回復才可以瀏覽
作者:
黃宥華
時間:
2020-5-22 20:23
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string o;
cout<<"請輸入一串英文字";
getline(cin,o);
for(int i=0; o[i]!=NULL ; i++)
cout<<int(o[i])<<endl;
system("pause");
return 0;
}
複製代碼
作者:
董宸佑
時間:
2020-5-22 20:23
#include<cstdlib>
#include<iostream>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串: ";
getline(cin,str);
cout<<"此字串的ASCII編碼依序為:"<<endl;
for(int i=0; i<str.length(); i++)
cout<<int(str[i])<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥穎
時間:
2020-5-22 20:24
#include<cstdlib>
#include<iostream>
#include<string>
using namespace std;
int main()
{
string a;
getline(cin,a);
cout<<"ASCII碼為";
for(int i=0; a[i]!=NULL; i++)
cout<<int(a[i])<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孫嘉駿
時間:
2020-5-22 20:25
#include<cstdlib>
#include<iostream>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串: ";
getline(cin,str);
cout<<"每個字的ASCLL碼的編序為: "<<endl;
for(int i=0; i<str.length(); i++)
cout<<int(str[i])<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李宇澤
時間:
2020-5-22 20:25
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string a;
cout<<"請輸入一串英文字";
getline(cin,a);
for(int i=0; a[i]!=NULL ; i++)
cout<<int(a[i])<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡忻霓
時間:
2020-5-22 20:28
#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;
}
複製代碼
作者:
林政瑜
時間:
2020-5-22 20:30
#include<cstdlib>
#include<iostream>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串: ";
getline(cin,str);
cout<<"每個字的ASCLL碼的編序為: "<<endl;
for(int i=0; i<str.length(); i++)
cout<<int(str[i])<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2020-5-23 11:52
本帖最後由 黃辰昊 於 2020-5-23 11:53 編輯
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入任意字串: ";
getline(cin,str);
cout<<"您剛輸入的字串ASCII碼依序為: "<<endl;
for(int i=0; i<str.length(); i++)
cout<<int(str[i])<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2