標題:
字串處理 (八) - 將字串轉換為ASCII碼
[打印本頁]
作者:
鄭繼威
時間:
2023-9-22 04:13
標題:
字串處理 (八) - 將字串轉換為ASCII碼
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-9-22 20:58
#include<cstdlib>
#include<iostream>
using namespace std;
int main(){
cout<<"wassup?";
string str;
getline(cin,str);
cout<<str.length()<<" characters!"<<endl;
for(int x=0;x<str.size();x++){
cout<<int(str[x])<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃子豪
時間:
2023-9-22 20:59
#include<iostream>
using namespace std;
int main(){
char a[100];
cout<<"字串:";
cin.getline(a,100);
cout<<"您剛輸入的字串ASCII碼依序為: \n";
for(int i=0;a[i]!='\0';i++)
{
cout<<int(a[i])<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林志穎
時間:
2023-9-22 20:59
#include <iostream>
#include <string.h>
#include <cstdlib>
using namespace std;
int main(){
string s2;
getline(cin, s2);
int n = s2.length();
for(int i = 0;i<=n-1;i++){
cout << int(s2[i]) << endl;
}
return 0;
}
作者:
盧玄皓
時間:
2023-9-22 21:00
#include<iostream>
#include<cstdlib>
#include<string.h>
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-9-22 21:00
#include<iostream>
#include<cstdlib>
#include<string.h>
using namespace std;
int main()
{
char s[1000];
cout<<"輸入一字串:";
cin.getline(s,1000);
int counter=0;
cout<< "你剛剛輸入字串的ASCII碼依序為:"<<endl;
for(int i=0;s[i]!=NULL;i++)
cout<<int(s[i])<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李柏漢
時間:
2023-9-22 21:00
#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-9-23 14:27
本帖最後由 蔡沛倢 於 2023-10-6 19:25 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string a;
cout<<"請輸入任一一組字串(包含空白,100字內):";
getline(cin,a);
cout<<"你輸入的字串ASCII碼依序為:"<<endl;
for(int i=0;i<a[i];i++)
{
cout<<int(a[i])<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
何權晉
時間:
2023-10-6 20:15
#include <iostream>
using namespace std;
int main(){
string let;
cout<<"Enter Something: ";
getline(cin,let);
cout<<"ASCII output= "<<endl;
for(int i=0;i<let.length();i++)
{
cout<<int(let[i])<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李宗儒
時間:
2024-1-10 19:15
#include<iostream>
#include<cstdlib>
#include<cstring>
using namespace std;
int main()
{
string a;
getline(cin,a);
for(int i=0;i<a.length();i++)
{
cout<<int(a[i])<<endl;
}
}
複製代碼
作者:
朱奕祈
時間:
2024-5-11 18:42
#include<iostream>
#include<cstdlib>
#include<string.h>
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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2