標題:
字串處理 (八) - 將字串轉換為ASCII碼
[打印本頁]
作者:
tonyh
時間:
2014-7-26 17:03
標題:
字串處理 (八) - 將字串轉換為ASCII碼
本帖最後由 tonyh 於 2014-7-26 17:48 編輯
[attach]930[/attach]
#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;
}
複製代碼
作者:
林宇翔
時間:
2014-7-26 17:15
#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;
}
複製代碼
作者:
張郁庭
時間:
2014-7-26 17:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[100];
cout<<"請輸入一任意字串: ";
cin.getline(str,100);
cout<<"此字串的ASCII碼字元碼依序為: "<<endl;
for(int i=0; str[i]!=NULL; i++)
cout<<int(str[i])<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2014-7-26 17:17
#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;
}
複製代碼
作者:
李允軒
時間:
2014-7-26 17:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[100];
cout << "請輸入任一個字串(100個字內)";
cin.getline(str,100);
cout << "你輸入的字串的ASUII碼為"endl;
for(int i = 0; str[i] != NULL; i++)
cout << int(str[i]) << endl;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2014-7-26 17:19
#include<iostream>
#include<cstdlib>
#include<string>
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;
}
複製代碼
作者:
周雍程
時間:
2014-7-31 15:59
#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;
}
複製代碼
作者:
劉得旗
時間:
2014-7-31 15:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[100];
cout<<"輸入任意字串: ";
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://istak.org.tw/seed/)
Powered by Discuz! 7.2