Board logo

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

作者: 鄭繼威    時間: 2023-5-13 14:47     標題: 字串處理 (九) - 將ASCII碼轉換為字串1


提示: char(ASCII碼) --> 字元
字串處理 (八)是int去包char ->輸入字元取得整數
這個反過來char去包int ->輸入整數取得字元
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int x;
  8.     cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
  9.     cout<<"值: ";
  10.     cin>>x;
  11.     cout<<"所得字元:"<<char(x)<<endl;

  12.     goto re;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼

作者: 宜儒    時間: 2023-5-13 15:10

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         re:
  7.         int n;
  8.         cout<<"在此輸入ACSCII編碼(0~127):";
  9.         cin>>n;
  10.         cout<<"你所輸入的ASCII編碼為:"<<n<<endl;
  11.         cout<<"所得字元:"<<char(n)<<endl;   //char(int):將ASCII編碼轉換成對應字元
  12.        
  13.         goto re;
  14.         system("pause");
  15.         return 0;
  16. }
複製代碼

作者: 葉佳和    時間: 2023-5-13 15:20

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int x;
  8.     cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
  9.     cout<<"值: ";
  10.     cin>>x;
  11.     cout<<"所得字元:"<<char(x)<<endl;

  12.     goto re;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼

作者: 陳宥霖    時間: 2023-5-13 15:22

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int x;
  8.     cout<<"輸入ASCII碼範圍(0~127)"<<endl;
  9.     cout<<"值: ";
  10.     cin>>x;
  11.     cout<<"所得字元:"<<char(x)<<endl;

  12.     goto re;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼

作者: 徐啟祐    時間: 2023-5-13 15:25

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int i;
  8.     cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
  9.     cout<<"值:";
  10.     cin>>i;
  11.     cout<<"所得字元:"<<char(i)<<endl;

  12.     goto re;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼

作者: 陳泓亦    時間: 2023-5-13 15:30

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int x;
  8.     cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
  9.     cout<<"值: ";
  10.     cin>>x;
  11.     cout<<"所得字元:"<<char(x)<<endl;

  12.     goto re;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼

作者: 吳俊頡    時間: 2023-5-17 20:20

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int x;
  8.     cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
  9.     cout<<"值: ";
  10.     cin>>x;
  11.     cout<<"所得字元:"<<char(x)<<endl;

  12.     goto re;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼

作者: 陳牧謙    時間: 2023-5-19 23:37

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int x;
  8.     cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
  9.     cout<<"值: ";
  10.     cin>>x;
  11.     cout<<"所得字元:"<<char(x)<<endl;
  12.     goto re;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼

作者: 翁川祐    時間: 2023-5-20 13:56

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     cout<<"在此輸入ASCII碼範圍"<<endl;
  8.     cout<<"值: ";
  9.     cin>>x;
  10.     cout<<"所得字元:"<<char(x)<<endl;

  11.     system("pause");     
  12.     return 0;   
  13. }
複製代碼

作者: 黃品禎    時間: 2023-10-7 19:18

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string.h>
  4. using namespace std;
  5. int main()
  6. {
  7.         int a;
  8.         cout<<"請輸入0~127"<<endl;
  9.         cin>>a;
  10.         cout<<char(a)<<endl;
  11.         system ("pause");
  12.         return 0;
  13. }
複製代碼





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