Board logo

標題: 字串處理 (八) - 將字串轉換為ASCII碼 [打印本頁]

作者: tonyh    時間: 2020-5-22 20:14     標題: 字串處理 (八) - 將字串轉換為ASCII碼

本帖最後由 tonyh 於 2020-5-22 20:24 編輯



提示: int(字元) --> ASCII碼

本帖隱藏的內容需要回復才可以瀏覽

作者: 黃宥華    時間: 2020-5-22 20:23

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.    
  8.     string o;
  9.     cout<<"請輸入一串英文字";
  10.     getline(cin,o);
  11.     for(int i=0; o[i]!=NULL ; i++)
  12.         cout<<int(o[i])<<endl;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼

作者: 董宸佑    時間: 2020-5-22 20:23

  1. #include<cstdlib>
  2. #include<iostream>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串: ";
  9.     getline(cin,str);
  10.     cout<<"此字串的ASCII編碼依序為:"<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<int(str[i])<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 陳宥穎    時間: 2020-5-22 20:24

  1. #include<cstdlib>
  2. #include<iostream>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string a;
  8.     getline(cin,a);
  9.     cout<<"ASCII碼為";
  10.     for(int i=0; a[i]!=NULL; i++)
  11.     cout<<int(a[i])<<endl;
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

作者: 孫嘉駿    時間: 2020-5-22 20:25

  1. #include<cstdlib>
  2. #include<iostream>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串: ";
  9.     getline(cin,str);
  10.     cout<<"每個字的ASCLL碼的編序為: "<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<int(str[i])<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 李宇澤    時間: 2020-5-22 20:25

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.    
  8.     string a;
  9.     cout<<"請輸入一串英文字";
  10.     getline(cin,a);
  11.     for(int i=0; a[i]!=NULL ; i++)
  12.         cout<<int(a[i])<<endl;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼

作者: 蔡忻霓    時間: 2020-5-22 20:28

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串(包含空白,100字內): ";
  9.     getline(cin,str);
  10.     cout<<"您剛輸入的字串ASCII碼依序為: "<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<int(str[i])<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 林政瑜    時間: 2020-5-22 20:30

  1. #include<cstdlib>
  2. #include<iostream>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串: ";
  9.     getline(cin,str);
  10.     cout<<"每個字的ASCLL碼的編序為: "<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<int(str[i])<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 黃辰昊    時間: 2020-5-23 11:52

本帖最後由 黃辰昊 於 2020-5-23 11:53 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入任意字串: ";
  9.     getline(cin,str);
  10.     cout<<"您剛輸入的字串ASCII碼依序為: "<<endl;
  11.     for(int i=0; i<str.length(); i++)
  12.         cout<<int(str[i])<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2