標題:
字串處理 (八) - 將字串轉換為ASCII碼
[打印本頁]
作者:
tonyh
時間:
2021-6-26 20:16
標題:
字串處理 (八) - 將字串轉換為ASCII碼
本帖最後由 tonyh 於 2021-7-3 19:23 編輯
提示: 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;
}
複製代碼
作者:
王宇崴
時間:
2021-7-3 19:21
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入任意字串: ";
getline(cin,str);
cout<<"剛樹入的字串ASCII碼依序為: ";
for(int i=0; i<str.length(); i++)
cout<<int(str[i])<<endl;
system("pause");
return 0;
}
複製代碼
作者:
余柏緯
時間:
2021-7-3 19:23
#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.size();i++)
{
cout<<int(str[i])<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃子倢
時間:
2021-7-3 19:24
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入任意字串"<<endl;
getline(cin,str);
cout<<"此字串的ASKII碼為:";
for(int i=0; i<str.size(); i++)
{
cout<<int(str[i])<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林鼎傑
時間:
2021-7-3 19:24
#include<iostream>
#include<cstdlib>
#include<cstring>
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;
}
複製代碼
作者:
朱奕祐
時間:
2021-7-3 19:25
#include<iostream>
#include<cstdlib>
#include<cstring>
using namespace std;
int main()
{
string str;
cout<<"請輸入任意字串: ";
getline(cin,str);
cout<<"此字串的ASCII字元碼依序為:"<<endl;
for(int i=0; str[i]!=NULL; i++)
cout<<int(str[i])<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂尚霖
時間:
2021-7-3 19:25
#include<iostream>
#include<cstdlib>
#include<cstring>
using namespace std;
int main()
{
string str;
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;
}
複製代碼
作者:
王秉鈞
時間:
2021-7-3 19:27
#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;
}
複製代碼
作者:
許洧熏
時間:
2021-7-3 19:27
#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;
}
複製代碼
作者:
俞成章
時間:
2021-7-3 19:29
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2